我正在使用这样的 boost-log 库:
BOOST_LOG_TRIVIAL(info) << "My sample output";
我希望,我不需要改变这一点。
输出看起来像这样
[2013-10-31 17:19:19.044701] [0x3f1e6740] [info] My sample output
问题:
我正在尝试将此从标准输出转发到文件。
当我尝试这样的事情时
boost::log::add_file_log("sample.log", boost::log::keywords::auto_flush = true);
boost::log::add_common_attributes();
完全相同的输出BOOST_LOG_TRIVIAL
看起来像
My sample output
我该怎么做才能找回我心爱的元信息?