diff options
| author | Richard Schwab <[email protected]> | 2012-12-12 16:32:22 +0100 |
|---|---|---|
| committer | Richard Schwab <[email protected]> | 2012-12-12 16:32:22 +0100 |
| commit | 303b0009dc4ef3dbe4d9caabfe94798ee51579d4 (patch) | |
| tree | 227cdf5f5fa2a036768f51170addcbd3ef43eedb /src/util.cpp | |
| parent | Merge pull request #2068 from Diapolo/CheckDiskSpace (diff) | |
| download | discoin-303b0009dc4ef3dbe4d9caabfe94798ee51579d4.tar.xz discoin-303b0009dc4ef3dbe4d9caabfe94798ee51579d4.zip | |
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 bd8ad8acd..194218590 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 |