diff options
| author | Jeff Garzik <[email protected]> | 2012-12-30 20:46:54 -0500 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-12-30 20:46:54 -0500 |
| commit | 393819cde473e9980bba468776a2b1dd5b687a4a (patch) | |
| tree | f7d777c6e81c6fe4e5f81ef29baf079f112ed6aa /src/util.cpp | |
| parent | Merge pull request #2116 from sipa/importrescanbool (diff) | |
| download | discoin-393819cde473e9980bba468776a2b1dd5b687a4a.tar.xz discoin-393819cde473e9980bba468776a2b1dd5b687a4a.zip | |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 806f3ebcf..576ba50db 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 |