aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2012-12-30 20:46:54 -0500
committerJeff Garzik <jgarzik@redhat.com>2012-12-30 20:46:54 -0500
commit393819cde473e9980bba468776a2b1dd5b687a4a (patch)
treef7d777c6e81c6fe4e5f81ef29baf079f112ed6aa /src/util.cpp
parent23826f1b7fd070894cfabdbf49b0a3840e6f33a6 (diff)
downloadbitcoin-393819cde473e9980bba468776a2b1dd5b687a4a.tar.xz
Remove 'T' from debug log timestamps
Space separation between major fields is easier for human eyes and libs to parse.
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 806f3ebcf6..576ba50dbb 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -240,7 +240,7 @@ inline int OutputDebugStringF(const char* pszFormat, ...)
// Debug print useful for profiling
if (fLogTimestamps && fStartedNewLine)
- fprintf(fileout, "%s ", DateTimeStrFormat("%Y-%m-%dT%H:%M:%S", GetTime()).c_str());
+ fprintf(fileout, "%s ", DateTimeStrFormat("%Y-%m-%d %H:%M:%S", GetTime()).c_str());
if (pszFormat[strlen(pszFormat) - 1] == '\n')
fStartedNewLine = true;
else