diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-12-30 20:46:54 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-12-30 20:46:54 -0500 |
commit | 393819cde473e9980bba468776a2b1dd5b687a4a (patch) | |
tree | f7d777c6e81c6fe4e5f81ef29baf079f112ed6aa | |
parent | 23826f1b7fd070894cfabdbf49b0a3840e6f33a6 (diff) |
Remove 'T' from debug log timestamps
Space separation between major fields is easier for human eyes and
libs to parse.
-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 806f3ebcf6..576ba50dbb 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 |