我正在尝试使用plog库在我的应用程序中启用日志记录。每当我记录一些数据时,它都会在文件中存储两次。
std::string errorFilePath = "error.log
plog::init(plog::error, errorFilePath.c_str(), 104857600, 3);
LOG_ERROR << "Hello World!";
2018-10-09 09:43:45.866错误[9888] [main @ 10]世界您好! 2018-10-09 09:43:45.866错误[9888] [main @ 10] Hello World!