我想使用 Glog lib 来记录我的应用程序日志。我的应用程序是多线程的。正如 glog 中所建议的,我应该使用 RAW_LOG 来保证线程安全。这是我的示例代码。
#include "stdafx.h"
#define GLOG_NO_ABBREVIATED_SEVERITIES
#include <windows.h>
#include <glog/logging.h>
#include <glog/raw_logging.h>
using namespace std;
int main(int /*argc*/, char** argv)
{
FLAGS_alsologtostderr = 1;
google::SetLogDestination(google::GLOG_INFO, "E:/mylog.log");
google::InitGoogleLogging(argv[0]);
//LOG(INFO) << "Infomration";
RAW_LOG_INFO("Test");
RAW_LOG(INFO,"This is INFO");
RAW_LOG(WARNING,"This is WARNING");
RAW_LOG(ERROR, "This is Error");
return 0;
}
但是,如果我使用 RAW_LOG,则不会生成日志文件,但如果我使用 LOG() 函数,则会生成日志文件。
请让我知道如何使用 RAW_LOG 函数或者 LOG() 函数是否是线程安全的。