[logging] log system time and mock time

This commit is contained in:
John Newbery 2017-05-10 15:49:00 -04:00
parent 4b766fcdd4
commit 761392db3a
3 changed files with 11 additions and 11 deletions

View File

@ -310,10 +310,14 @@ static std::string LogTimestampStr(const std::string &str, std::atomic_bool *fSt
return str; return str;
if (*fStartedNewLine) { if (*fStartedNewLine) {
int64_t nTimeMicros = GetLogTimeMicros(); int64_t nTimeMicros = GetTimeMicros();
strStamped = DateTimeStrFormat("%Y-%m-%d %H:%M:%S", nTimeMicros/1000000); strStamped = DateTimeStrFormat("%Y-%m-%d %H:%M:%S", nTimeMicros/1000000);
if (fLogTimeMicros) if (fLogTimeMicros)
strStamped += strprintf(".%06d", nTimeMicros%1000000); strStamped += strprintf(".%06d", nTimeMicros%1000000);
int64_t mocktime = GetMockTime();
if (mocktime) {
strStamped += " (mocktime: " + DateTimeStrFormat("%Y-%m-%d %H:%M:%S", mocktime) + ")";
}
strStamped += ' ' + str; strStamped += ' ' + str;
} else } else
strStamped = str; strStamped = str;

View File

@ -31,6 +31,11 @@ void SetMockTime(int64_t nMockTimeIn)
nMockTime.store(nMockTimeIn, std::memory_order_relaxed); nMockTime.store(nMockTimeIn, std::memory_order_relaxed);
} }
int64_t GetMockTime()
{
return nMockTime.load(std::memory_order_relaxed);
}
int64_t GetTimeMillis() int64_t GetTimeMillis()
{ {
int64_t now = (boost::posix_time::microsec_clock::universal_time() - int64_t now = (boost::posix_time::microsec_clock::universal_time() -
@ -52,15 +57,6 @@ int64_t GetSystemTimeInSeconds()
return GetTimeMicros()/1000000; return GetTimeMicros()/1000000;
} }
/** Return a time useful for the debug log */
int64_t GetLogTimeMicros()
{
int64_t mocktime = nMockTime.load(std::memory_order_relaxed);
if (mocktime) return mocktime*1000000;
return GetTimeMicros();
}
void MilliSleep(int64_t n) void MilliSleep(int64_t n)
{ {

View File

@ -23,8 +23,8 @@ int64_t GetTime();
int64_t GetTimeMillis(); int64_t GetTimeMillis();
int64_t GetTimeMicros(); int64_t GetTimeMicros();
int64_t GetSystemTimeInSeconds(); // Like GetTime(), but not mockable int64_t GetSystemTimeInSeconds(); // Like GetTime(), but not mockable
int64_t GetLogTimeMicros();
void SetMockTime(int64_t nMockTimeIn); void SetMockTime(int64_t nMockTimeIn);
int64_t GetMockTime();
void MilliSleep(int64_t n); void MilliSleep(int64_t n);
std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime); std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime);