mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-11-16 15:57:39 +00:00
Use UTC time for logging
This commit is contained in:
parent
e4be4c1a66
commit
02449bf9f9
1 changed files with 2 additions and 2 deletions
|
@ -275,9 +275,9 @@ NOINLINE void Stream::writeCurrentTime()
|
|||
tm t;
|
||||
|
||||
#ifdef _WIN32
|
||||
localtime_s(&t, &t0);
|
||||
gmtime_s(&t, &t0);
|
||||
#else
|
||||
localtime_r(&t0, &t);
|
||||
gmtime_r(&t0, &t);
|
||||
#endif
|
||||
|
||||
m_numberWidth = 2;
|
||||
|
|
Loading…
Reference in a new issue