diff options
author | Richard Schwab <mail@w.tf-w.tf> | 2012-12-12 16:32:22 +0100 |
---|---|---|
committer | Richard Schwab <mail@w.tf-w.tf> | 2012-12-12 16:32:22 +0100 |
commit | 303b0009dc4ef3dbe4d9caabfe94798ee51579d4 (patch) | |
tree | 227cdf5f5fa2a036768f51170addcbd3ef43eedb /src/util.cpp | |
parent | 622da5df6ec0efc46804321f4b77ea17a9579821 (diff) |
Change timestamps to use ISO8601 formatting
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
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 |