码迷,mamicode.com
首页 > 其他好文 > 详细

log4cpp_note

时间:2018-04-15 11:45:07      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:create   world   asi   mat   records   ati   idea   written   set   

# log4cpp

## The first HelloWorld process of log4cpp

1. The relationship between Category,Appender and Layout is as follow:

> There are more than one Category in the system,and all of them are inherited from the same root,and each Category is responsible for recording its own log.Each Category can add mroe than one Appender.Each Appender specifies a destination for log,for example,a file,a character stream,or a windows log.when the Category records a log,the log is written to all the Appender attached to this Category.Each Appender includes a Layout,and this Layout define a format of the log on the Appender.

2. Now revist the previous HelloWorld program,and we can see that the process is as follows:

> 1. Create an Appender,and specify a Layout that is contains.
> 2. Get the root of Category from system,and add the Appender to this Category.
> 3. Setting the priority of the Category.
> 4. Record log.
> 5. close the Category.

## The Layout of log4cpp

###1. PatternLayout

1. Three subclass of Layout:

> * BasicLayout
> * PatternLayout
> * SimpleLayout

2. PatternLayout

> * %c category
> * %d date
> * %m message
> * %p priority
> * %n newline
> * %r ms after the layout created
> * %R seconds from 1970
> * %u the number of clock cycles to date from the beginning of the process
> * %x NDC

3. An ideal format

"%d: %p %c %x: %m%n"

log4cpp_note

标签:create   world   asi   mat   records   ati   idea   written   set   

原文地址:https://www.cnblogs.com/xintt/p/8837004.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!