mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 21:42:47 +01:00
make -logtimestamps default on and rework help-message
This commit is contained in:
parent
1d63195f3f
commit
e56355b980
@ -348,7 +348,7 @@ std::string HelpMessage()
|
||||
" -testnet " + _("Use the test network") + "\n" +
|
||||
" -debug " + _("Output extra debugging information. Implies all other -debug* options") + "\n" +
|
||||
" -debugnet " + _("Output extra network debugging information") + "\n" +
|
||||
" -logtimestamps " + _("Prepend debug output with timestamp") + "\n" +
|
||||
" -logtimestamps " + _("Prepend debug output with timestamp (default: 1)") + "\n" +
|
||||
" -shrinkdebugfile " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n" +
|
||||
" -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n" +
|
||||
#ifdef WIN32
|
||||
@ -604,7 +604,7 @@ bool AppInit2(boost::thread_group& threadGroup)
|
||||
#endif
|
||||
fPrintToConsole = GetBoolArg("-printtoconsole");
|
||||
fPrintToDebugger = GetBoolArg("-printtodebugger");
|
||||
fLogTimestamps = GetBoolArg("-logtimestamps");
|
||||
fLogTimestamps = GetBoolArg("-logtimestamps", true);
|
||||
|
||||
if (mapArgs.count("-timeout"))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user