aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorRichard Schwab <mail@w.tf-w.tf>2012-12-12 16:32:22 +0100
committerRichard Schwab <mail@w.tf-w.tf>2012-12-12 16:32:22 +0100
commit303b0009dc4ef3dbe4d9caabfe94798ee51579d4 (patch)
tree227cdf5f5fa2a036768f51170addcbd3ef43eedb /src/util.cpp
parent622da5df6ec0efc46804321f4b77ea17a9579821 (diff)
downloadbitcoin-303b0009dc4ef3dbe4d9caabfe94798ee51579d4.tar.xz
Change timestamps to use ISO8601 formatting
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 bd8ad8acd0..194218590d 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("%x %H:%M:%S", GetTime()).c_str());
+ fprintf(fileout, "%s ", DateTimeStrFormat("%Y-%m-%dT%H:%M:%S", GetTime()).c_str());
if (pszFormat[strlen(pszFormat) - 1] == '\n')
fStartedNewLine = true;
else