mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
Add timestamp prefix to each line in the debug log (this time with human-readable times)
This commit is contained in:
parent
b104df742d
commit
fe460d47b0
1 changed files with 2 additions and 2 deletions
4
util.cpp
4
util.cpp
|
@ -169,8 +169,8 @@ inline int OutputDebugStringF(const char* pszFormat, ...)
|
|||
}
|
||||
if (fileout)
|
||||
{
|
||||
//// Debug print useful for profiling
|
||||
//fprintf(fileout, " %"PRI64d" ", GetTimeMillis());
|
||||
// Debug print useful for profiling
|
||||
fprintf(fileout, "%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
|
||||
va_list arg_ptr;
|
||||
va_start(arg_ptr, pszFormat);
|
||||
ret = vfprintf(fileout, pszFormat, arg_ptr);
|
||||
|
|
Loading…
Reference in a new issue