diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-10-30 11:36:51 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-02 22:43:50 +0100 |
commit | 959e62f0c889788e7775d5953668ce0cc5c1fea8 (patch) | |
tree | 6452d268b466f89effbb88ce902aaffec2d7a10f /src/init.cpp | |
parent | 694c7c81610ff17251964c25f767b5440d25642a (diff) |
make -logtimestamps default on and rework help-message
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index 647b8d52ea..e029ad0395 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -227,7 +227,7 @@ std::string HelpMessage(HelpMessageMode hmm) { strUsage += ".\n"; } - strUsage += " -logtimestamps " + _("Prepend debug output with timestamp") + "\n"; + strUsage += " -logtimestamps " + _("Prepend debug output with timestamp (default: 1)") + "\n"; strUsage += " -shrinkdebugfile " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n"; strUsage += " -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n"; strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be " @@ -500,7 +500,7 @@ bool AppInit2(boost::thread_group& threadGroup) fServer = true; fPrintToConsole = GetBoolArg("-printtoconsole", false); fPrintToDebugger = GetBoolArg("-printtodebugger", false); - fLogTimestamps = GetBoolArg("-logtimestamps", false); + fLogTimestamps = GetBoolArg("-logtimestamps", true); if (mapArgs.count("-timeout")) { |