我正在使用glog
库,但在将多条消息打印到文件时遇到问题。
当我使用此代码时:
std::string appPath = TUtil::ExePath() + "logs\\";
google::SetLogDestination(google::GLOG_INFO, std::string(appPath + "INFO").c_str());
google::SetLogDestination(google::GLOG_ERROR, "");
google::SetLogDestination(google::GLOG_FATAL, "");
google::SetLogDestination(google::GLOG_WARNING, "");
google::InitGoogleLogging("");
LOG(INFO) << "Info1";
LOG(INFO) << "Info2";
LOG(WARNING) << "Warning1";
LOG(ERROR) << "ERROR1";
//LOG(FATAL) << "FATAL1";
我正在获取此日志文件(您可以看到除了第一个消息之外的所有消息都缺少它):
Log file created at: 2013/09/22 20:22:03
Running on machine: XXX
Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg
I0922 20:22:03.047548 9512 test.cpp:36] Info1
但是,当我取消注释时LOG(FATAL)
,它会打印所有消息:
Log file created at: 2013/09/22 20:39:52
Running on machine: XXX
Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg
I0922 20:39:52.060691 34104 test.cpp:36] Info1
I0922 20:39:52.063691 34104 test.cpp:37] Info2
W0922 20:39:52.063691 34104 test.cpp:38] Warning1
E0922 20:39:52.063691 34104 test.cpp:39] ERROR1
F0922 20:39:52.066692 34104 test.cpp:40] FATAL1
我完全不知道是什么原因造成的。就这么简单 - 当我打印fatal
日志消息时,它(以及它之前的所有内容)都会打印到文件中。但是当没有fatal
消息时,只打印第一个。
有没有人可能遇到过类似的问题,或者知道如何解决它?