extend log timestamps to three decimal places

This commit is contained in:
Glenn Maynard
2004-04-06 23:21:27 +00:00
parent 831ac462d1
commit 7135f8cc1d
3 changed files with 12 additions and 2 deletions
+2 -2
View File
@@ -242,7 +242,7 @@ void RageLog::Write( int where, const CString &line )
CString LineHeader;
if( m_bTimestamping )
LineHeader += SecondsToMMSSMsMs(RageTimer::GetTimeSinceStart()) + ": ";
LineHeader += SecondsToMMSSMsMsMs(RageTimer::GetTimeSinceStart()) + ": ";
if( where & WRITE_LOUD )
LineHeader += "WARNING: ";
@@ -384,7 +384,7 @@ void RageLog::MapLog(const CString &key, const char *fmt, ...)
{
CString s;
if( m_bTimestamping )
s += SecondsToMMSSMsMs(RageTimer::GetTimeSinceStart()) + ": ";
s += SecondsToMMSSMsMsMs(RageTimer::GetTimeSinceStart()) + ": ";
va_list va;
va_start(va, fmt);