Skip to content

Commit

Permalink
Merge pull request #3188 from Diapolo/logtimestamp_def
Browse files Browse the repository at this point in the history
make -logtimestamps default on and rework help-message
  • Loading branch information
laanwj committed Nov 4, 2013
2 parents bac7264 + 959e62f commit c4f2a00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 "
Expand Down Expand Up @@ -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"))
{
Expand Down

0 comments on commit c4f2a00

Please sign in to comment.