mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-09 08:43:04 +01:00
make -logtimestamps default on and rework help-message
Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
Rebased-From: 959e62f
This commit is contained in:
committed by
Wladimir J. van der Laan
parent
c4892eb4b3
commit
05ea79052c
@@ -335,7 +335,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
|
||||
@@ -571,7 +571,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"))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user