aboutsummaryrefslogtreecommitdiff
path: root/util.cpp
diff options
context:
space:
mode:
authorMatt Corallo <matt@bluematt.me>2011-03-09 21:48:11 +0100
committerMatt Corallo <matt@bluematt.me>2011-03-09 21:48:11 +0100
commitca221e6c21d684d50fa1fb9f9e7e3592ecc5ef5f (patch)
treed711f8c7300b3a440d663d194c6a17cbd7c1e029 /util.cpp
parentfe460d47b06d10095b882d7a9ea8a98ad0079bbd (diff)
downloadbitcoin-ca221e6c21d684d50fa1fb9f9e7e3592ecc5ef5f.tar.xz
Only log timestamps if -logtimestamps is set.
Diffstat (limited to 'util.cpp')
-rw-r--r--util.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/util.cpp b/util.cpp
index ab1f5aad8c..d3f3ed1c89 100644
--- a/util.cpp
+++ b/util.cpp
@@ -170,7 +170,8 @@ inline int OutputDebugStringF(const char* pszFormat, ...)
if (fileout)
{
// Debug print useful for profiling
- fprintf(fileout, "%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
+ if (GetBoolArg("-logtimestamps"))
+ fprintf(fileout, "%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
va_list arg_ptr;
va_start(arg_ptr, pszFormat);
ret = vfprintf(fileout, pszFormat, arg_ptr);