博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
boost::log随笔
阅读量:6814 次
发布时间:2019-06-26

本文共 1692 字,大约阅读时间需要 5 分钟。

boost::log包含两个大部分:logger和sink

 

logging::core是全局的一个单例

 

1,sink

在boost::log中有一个默认的sink与控制台流相关关联;

如果想把日志输出到指定的文件流中可以使用如下代码:

auto sink=add_log_file("xxx.log");

上面的一行代码与下面是等价的:

===========================================================================

void init()
{
// Construct the sink
typedef sinks::synchronous_sink< sinks::text_ostream_backend > text_sink;
boost::shared_ptr< text_sink > sink = boost::make_shared< text_sink >();
 
// Add a stream to write log to
sink->locked_backend()->add_stream(
boost::make_shared< std::ofstream >("sample.log"));
 
// Register the sink in the logging core
logging::core::get()->add_sink(sink);
}
===========================================================================
 
从上面的代码中可能知道add_log_file内部是把相关的sink已经加入到loggint::core了;
 
如果要使用多个sink,可以通过设置channel属性,eg
1 typedef boost::log::sources::channel_logger_mt<>  channel_logger; 2  3 std::shard_ptr
create_logger(const std::string& channel) 4 { 5 auto sink = add_file_log( 6 keywords::file_name="xx.log", 7 keywords::channel=channel 8 ); 9 10 //只将属于此channel的信息输出到xx.log11 sink->set_filter(expr::attr
("Channel")==channel);12 13 return std::shared_ptr
(new channel_logger(keywords::channel));14 }

 

如此就创建一个指向channel相关的logger,有了logger就可以打印日志了,eg

std::shared<channel_logger> logger = create_logger("my_channel");

 BOOST_LOG(*logger)<<"Hello World!";

 这样就可以在xx.log文件中看到Hello World!信息了
 
 
参考链接:http://www.wanguanglu.com/2016/07/28/boost-log-document/#detailed-logging-source 
https://www.boost.org/doc/libs/1_55_0/libs/log/doc/html/log/detailed/sources.html 

转载于:https://www.cnblogs.com/guoliushui/p/9884520.html

你可能感兴趣的文章
git 问题
查看>>
Fedora18设置终端快捷键 和 桌面快捷方式
查看>>
取消NavigationBar左右两边的空隙
查看>>
Ubuntu 12.04 Gedit中文乱码解决办法
查看>>
修改symfony sfDoctrineGuardPlugin验证密码的方法
查看>>
Vbird的Linux私房菜学习笔记之正则表达式-特殊字符
查看>>
数据的作用域
查看>>
js中括号用于自执行测试
查看>>
ssh 公钥 密钥
查看>>
c#设计模式-单例模式
查看>>
Ehcache web cahce 缓存改良版
查看>>
F5集群配置公共irule,解决X-Frame-Options漏洞及host头漏洞
查看>>
mysql 创建日期列之timestamp
查看>>
VMM系列之使用VMM服务器构建 Hyper-V主机(4)
查看>>
详测 Generics Collections TList (7): Items、Contains
查看>>
配置FTP服务器(2) 本地用户下载和上传
查看>>
多线程编程(11) - 多线程同步之 Mutex (互斥对象)[续]
查看>>
【Java每日一题】20161214
查看>>
requireJs 模块化简陋版本
查看>>
我的友情链接
查看>>