aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2013-11-04 06:18:23 -0800
committerWladimir J. van der Laan <laanwj@gmail.com>2013-11-04 06:18:23 -0800
commitc4f2a002caaa547f62656286db6303d9f40bd885 (patch)
tree318ab7f1c5a8fc32383a271dfdb8c80ca34596f5 /src/init.cpp
parentbac72640ee4fbf32c639901229dcd714defa1baa (diff)
parent959e62f0c889788e7775d5953668ce0cc5c1fea8 (diff)
downloadbitcoin-c4f2a002caaa547f62656286db6303d9f40bd885.tar.xz
Merge pull request #3188 from Diapolo/logtimestamp_def
make -logtimestamps default on and rework help-message
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp
index a803598f32..eb46aed999 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"))
{