Browse Source

Add timestamp prefix to each line in the debug log (this time with human-readable times)

miguelfreitas
Matt Corallo 14 years ago
parent
commit
fe460d47b0
  1. 4
      util.cpp

4
util.cpp

@ -169,8 +169,8 @@ inline int OutputDebugStringF(const char* pszFormat, ...)
} }
if (fileout) if (fileout)
{ {
//// Debug print useful for profiling // Debug print useful for profiling
//fprintf(fileout, " %"PRI64d" ", GetTimeMillis()); fprintf(fileout, "%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
va_list arg_ptr; va_list arg_ptr;
va_start(arg_ptr, pszFormat); va_start(arg_ptr, pszFormat);
ret = vfprintf(fileout, pszFormat, arg_ptr); ret = vfprintf(fileout, pszFormat, arg_ptr);

Loading…
Cancel
Save