]> Git Repo - VerusCoin.git/commitdiff
Remove 'T' from debug log timestamps
authorJeff Garzik <[email protected]>
Mon, 31 Dec 2012 01:46:54 +0000 (20:46 -0500)
committerJeff Garzik <[email protected]>
Mon, 31 Dec 2012 01:46:54 +0000 (20:46 -0500)
Space separation between major fields is easier for human eyes and
libs to parse.

src/util.cpp

index 806f3ebcf6e83b4e547e27b3ffd087f06a4a8923..576ba50dbb723f40803920470ae793208ea0f96a 100644 (file)
@@ -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
This page took 0.029031 seconds and 4 git commands to generate.