Linux下log4cxx的安装使用
From: http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=78707&id=368589Log4cxx是开放源代码项目Apache Logging Service的子项目之一,用于为C++程序提供日志功能,以便开发者对目标程序进行调试和审计。要使用log4cxx,首先要从官网下载,官网是http://logging.
·
From: http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=78707&id=368589
Log4cxx是开放源代码项目
Apache Logging Service的子项目之一,用于为C++程序提供日志功能,以便开发者对目标程序进行调试和审计。
要使用log4cxx,首先要从官网下载,官网是http://logging.apache.org/log4cxx/index.html,目前的最新版本是0.10.0,下载地址:http://www.apache.org/dyn/closer.cgi/logging/log4cxx/0.10.0/apache-log4cxx-0.10.0.tar.gz。安装方式可以使用ant,也可以使用gcc编译安装,本文以gcc编译安装为主。安装log4cxx需要apr支持,apr官网地址是:http://apr.apache.org/,需要下载apr和apr_util两个组件。
安装步骤如下:
cd ~/libs
tar xjvf apr-1.4.4.tar.bz2
cd apr-1.4.4
./configure --prefix=${HOME}/libs && make && make install
cd ..
tar xjvf apr-util-1.3.11.tar.bz2
cd apr-util-1.3.11
./configure --prefix=${HOME}/libs --with-apr=${HOME}/libs && make && make install
cd ..
tar xzvf apache-log4cxx-0.10.0.tar.gz
cd apache-log4cxx-0.10.0
./configure --with-charset=utf-8 --with-apr=${HOME}/libs --with-apr-util=${HOME}/libs && make && make install
tar xjvf apr-1.4.4.tar.bz2
cd apr-1.4.4
./configure --prefix=${HOME}/libs && make && make install
cd ..
tar xjvf apr-util-1.3.11.tar.bz2
cd apr-util-1.3.11
./configure --prefix=${HOME}/libs --with-apr=${HOME}/libs && make && make install
cd ..
tar xzvf apache-log4cxx-0.10.0.tar.gz
cd apache-log4cxx-0.10.0
./configure --with-charset=utf-8 --with-apr=${HOME}/libs --with-apr-util=${HOME}/libs && make && make install
默认安装后会在/usr/local/include目录下包含log4cxx目录,该目录下就是log4cxx的相关头文件。
下面写个例子(采用基本配置方式,即不使用配置文件)
- #include <log4cxx/logger.h>
- #include <log4cxx/basicconfigurator.h>
- #include <log4cxx/helpers/exception.h>
-
- using namespace log4cxx;
- using namespace log4cxx::helpers;
-
- LoggerPtr logger(Logger::getLogger("MyApp"));
-
- int main(int argc, char **argv)
- {
- int result = EXIT_SUCCESS;
- try
- {
- BasicConfigurator::configure();
- LOG4CXX_INFO(logger,"Entering application");
- }
- catch(Exception&)
- {
- result =EXIT_FAILURE;
- }
- return result;
- }
在我们用g++命令编译的时候,可能会出现链接错误,从晚上找了半天,原来编译的时候要用-l参数指定log4cxx命名空间。如下:
- g++ -llog4cxx -o myApp myApp.cpp
这样就会产生myApp可执行文件了。
在执行的时候,你可能会得到下面的错误:
- ./a.out: error while loading shared libraries: liblog4cxx.so.10: cannot open shared object file: No such file or directory
查找半天发现在/usr/local/lib下有liblog4cxx.so.10文件,这个问题是因为你没有设置LD_LIBRARY_PATH环境变量造成的。执行
- export LD_LIBRARY_PATH=/usr/local/lib
再运行,看到树下的输出了吧:
- 0 [0xb7fb36c0] INFO MyApp null - Entering application
如果需要写配置文件,例子如下:
- #include "log4cxx/logger.h"
- #include "log4cxx/propertyconfigurator.h"
-
- static log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("recommend_updater"));
-
- int main(int argc, char *argv[])
- {
- log4cxx::PropertyConfigurator::configure("./log4cxx_hello.properties");
- LOG4CXX_INFO(logger, "use properities file");
- return 0;
- }
log4cxx_hello.properties的内容如下:
- log4j.rootLogger=debug, R
- log4j.appender.stdout=org.apache.log4j.ConsoleAppender
- log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
- # Pattern to output the caller's file name and line number.
- log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n
- log4j.appender.R=org.apache.log4j.RollingFileAppender
- log4j.appender.R.File=./hello.log
- log4j.appender.R.MaxFileSize=100KB
- # Keep one backup file
- log4j.appender.R.MaxBackupIndex=10
- log4j.appender.R.layout=org.apache.log4j.PatternLayout
- log4j.appender.R.layout.ConversionPattern=%5p %c [%t] (%F:%L) - %m%n
上面的配置了大小为100K的滚动日志。
第二篇:Studio2008下编译使用log4cxx http://blog.chinaunix.net/space.php?uid=78707&do=blog&id=374503
下面是别人的在windows的环境下使用log4cxx的文章,http://blog.chinaunix.net/space.php?uid=78707&do=blog&id=368675
注:
一个配置例子,写三个不同的log文件
根:server.log
子1:bond.log
子2:
market_msg.log
log4j.rootLogger=INFO, ca, fa
log4j.logger.BCBond=DEBUG, ca, fa_bond
log4j.logger.MarketMsg=DEBUG, fa_market_msg
log4j.additivity.BCBond=false
log4j.additivity.MarketMsg=false
#对Appender fa进行设置:
#这是一个文件类型的Appender,
#其输出文件(File)为./output.log,
#输出方式(Append)为覆盖方式,
#输出格式(layout)为PatternLayout
log4j.appender.fa=org.apache.log4j.FileAppender
log4j.appender.fa.File=log/server.log
log4j.appender.fa.Append=true
log4j.appender.fa.File.MaxFileSize=10KB
log4j.appender.fa.layout=org.apache.log4j.PatternLayout
log4j.appender.fa.layout.ConversionPattern=%d [%t] %-5p %.16c - %m%n
log4j.appender.fa=org.apache.log4j.RollingFileAppender
log4j.appender.fa.MaxFileSize=1024KB
log4j.appender.fa.MaxBackupIndex=10
#对Appender fa_bond进行设置:
#这是一个文件类型的Appender,
#其输出文件(File)为./output.log,
#输出方式(Append)为覆盖方式,
#输出格式(layout)为PatternLayout
log4j.appender.fa_bond=org.apache.log4j.FileAppender
log4j.appender.fa_bond.File=log/bond.log
log4j.appender.fa_bond.Append=true
log4j.appender.fa_bond.File.MaxFileSize=10KB
log4j.appender.fa_bond.layout=org.apache.log4j.PatternLayout
log4j.appender.fa_bond.layout.ConversionPattern=%d [%t] %-5p %.16c - %m%n
log4j.appender.fa_bond=org.apache.log4j.RollingFileAppender
log4j.appender.fa_bond.MaxFileSize=1024KB
log4j.appender.fa_bond.MaxBackupIndex=10
#对Appender fa_bond进行设置:
#这是一个文件类型的Appender,
#其输出文件(File)为./output.log,
#输出方式(Append)为覆盖方式,
#输出格式(layout)为PatternLayout
log4j.appender.fa_market_msg=org.apache.log4j.FileAppender
log4j.appender.fa_market_msg.File=log/market_msg.log
log4j.appender.fa_market_msg.Append=true
log4j.appender.fa_market_msg.File.MaxFileSize=10KB
log4j.appender.fa_market_msg.layout=org.apache.log4j.PatternLayout
log4j.appender.fa_market_msg.layout.ConversionPattern=%d [%t] %-5p %.25c - %m%n
log4j.appender.fa_market_msg=org.apache.log4j.RollingFileAppender
log4j.appender.fa_market_msg.MaxFileSize=1048576KB
log4j.appender.fa_market_msg.MaxBackupIndex=10
#对Appender ca进行设置:
#这是一个控制台类型的Appender
#输出格式(layout)为PatternLayout
log4j.appender.ca=org.apache.log4j.ConsoleAppender
log4j.appender.ca.layout=org.apache.log4j.PatternLayout
log4j.appender.ca.layout.ConversionPattern=%d [%t] %-5p %.16c - %m%n
log4j.logger.BCBond=DEBUG, ca, fa_bond
log4j.logger.MarketMsg=DEBUG, fa_market_msg
log4j.additivity.BCBond=false
log4j.additivity.MarketMsg=false
#对Appender fa进行设置:
#这是一个文件类型的Appender,
#其输出文件(File)为./output.log,
#输出方式(Append)为覆盖方式,
#输出格式(layout)为PatternLayout
log4j.appender.fa=org.apache.log4j.FileAppender
log4j.appender.fa.File=log/server.log
log4j.appender.fa.Append=true
log4j.appender.fa.File.MaxFileSize=10KB
log4j.appender.fa.layout=org.apache.log4j.PatternLayout
log4j.appender.fa.layout.ConversionPattern=%d [%t] %-5p %.16c - %m%n
log4j.appender.fa=org.apache.log4j.RollingFileAppender
log4j.appender.fa.MaxFileSize=1024KB
log4j.appender.fa.MaxBackupIndex=10
#对Appender fa_bond进行设置:
#这是一个文件类型的Appender,
#其输出文件(File)为./output.log,
#输出方式(Append)为覆盖方式,
#输出格式(layout)为PatternLayout
log4j.appender.fa_bond=org.apache.log4j.FileAppender
log4j.appender.fa_bond.File=log/bond.log
log4j.appender.fa_bond.Append=true
log4j.appender.fa_bond.File.MaxFileSize=10KB
log4j.appender.fa_bond.layout=org.apache.log4j.PatternLayout
log4j.appender.fa_bond.layout.ConversionPattern=%d [%t] %-5p %.16c - %m%n
log4j.appender.fa_bond=org.apache.log4j.RollingFileAppender
log4j.appender.fa_bond.MaxFileSize=1024KB
log4j.appender.fa_bond.MaxBackupIndex=10
#对Appender fa_bond进行设置:
#这是一个文件类型的Appender,
#其输出文件(File)为./output.log,
#输出方式(Append)为覆盖方式,
#输出格式(layout)为PatternLayout
log4j.appender.fa_market_msg=org.apache.log4j.FileAppender
log4j.appender.fa_market_msg.File=log/market_msg.log
log4j.appender.fa_market_msg.Append=true
log4j.appender.fa_market_msg.File.MaxFileSize=10KB
log4j.appender.fa_market_msg.layout=org.apache.log4j.PatternLayout
log4j.appender.fa_market_msg.layout.ConversionPattern=%d [%t] %-5p %.25c - %m%n
log4j.appender.fa_market_msg=org.apache.log4j.RollingFileAppender
log4j.appender.fa_market_msg.MaxFileSize=1048576KB
log4j.appender.fa_market_msg.MaxBackupIndex=10
#对Appender ca进行设置:
#这是一个控制台类型的Appender
#输出格式(layout)为PatternLayout
log4j.appender.ca=org.apache.log4j.ConsoleAppender
log4j.appender.ca.layout=org.apache.log4j.PatternLayout
log4j.appender.ca.layout.ConversionPattern=%d [%t] %-5p %.16c - %m%n
更多推荐
已为社区贡献3条内容
所有评论(0)