Fix miniglog.h bug
This commit is contained in:
parent
4021c565d2
commit
0610d43fe5
|
@ -242,7 +242,7 @@ class MYNTEYE_API MessageLogger {
|
||||||
struct tm *timeinfo;
|
struct tm *timeinfo;
|
||||||
|
|
||||||
time(&rawtime);
|
time(&rawtime);
|
||||||
timeinfo = localtime_r(&rawtime);
|
timeinfo = localtime(&rawtime);
|
||||||
std::set<google::LogSink *>::iterator iter;
|
std::set<google::LogSink *>::iterator iter;
|
||||||
// Send the log message to all sinks.
|
// Send the log message to all sinks.
|
||||||
for (iter = google::log_sinks_global.begin();
|
for (iter = google::log_sinks_global.begin();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user