让我们考虑来自 boost::log doc的示例。
void init()
{
logging::add_file_log
(
keywords::file_name = "sample_%N.log",
keywords::rotation_size = 10 * 1024 * 1024,
keywords::open_mode = (std::ios::out | std::ios::app),
keywords::format = "[%TimeStamp%]: %Message%"
);
logging::core::get()->set_filter
(
logging::trivial::severity >= logging::trivial::info
);
}
int main(int, char*[])
{
init();
logging::add_common_attributes();
using namespace logging::trivial;
src::severity_logger< severity_level > lg;
BOOST_LOG_SEV(lg, trace) << "A trace severity message";
return 0;
}
我第一次启动我的应用程序并sample_0.log
创建文件。第二次启动我的应用程序时,新消息被附加到同一个文件sample_0.log
中。我想sample_1.log
由应用程序创建。我想在每次应用程序运行时轮换日志文件。我怎样才能存档boost::log
呢?谢谢。