diff options
| author | Pieter Wuille <[email protected]> | 2012-12-13 14:39:57 -0800 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-12-13 14:39:57 -0800 |
| commit | 33766c9557586c508d4239126a61a4b3b460ce1d (patch) | |
| tree | bce94b8e0839cf4e2dca8a68d231d4be82a10d57 /src/util.cpp | |
| parent | Merge pull request #2045 from Diapolo/use_message (diff) | |
| parent | Change timestamps to use ISO8601 formatting (diff) | |
| download | discoin-33766c9557586c508d4239126a61a4b3b460ce1d.tar.xz discoin-33766c9557586c508d4239126a61a4b3b460ce1d.zip | |
Merge pull request #2096 from 94m3k1n9/fix-time-formats
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 3cbc6b196..806f3ebcf 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 |