1. 簡介
log4cplus是C++編寫的開源的日志系統,The purpose of this project is to port the excellentLog for Java(log4j)logging library to C++。
log4cplus具有靈活、強大、使用簡單、多線程安全的特點,實在是雜牌軍、游擊隊的福音。
2. 安裝使用(Linux)
log4cplus安裝使用非常簡單,從其官網:http://log4cplus.sourceforge.net/ 下載最新版本
運行:
tar xvzf log4cplus-x.x.x.tar.gz
cd log4cplus-x.x.x
./configure --prefix=/where/to/install
make
make install
在安裝目錄下生成include和lib兩個文件夾,分別為頭文件和庫文件
使用:
g++ -o server /mnt/hgfs/work_vm/project/work_project/server/obj/main.o -Lhttp://www.cnblogs.com//third/log4cplus/lib/ -Lhttp://www.cnblogs.com//third/boost/lib/-llog4cplus -lpthread -I/mnt/hgfs/work_vm/project/work_project/server/include -Ihttp://www.cnblogs.com//third/log4cplus/include/-Ihttp://www.cnblogs.com//third/boost/include/
編譯參數:
-Lhttp://www.cnblogs.com//third/log4cplus/lib/
-llog4cplus
-lpthread
-Ihttp://www.cnblogs.com//third/log4cplus/include/
3. 使用
log4cplus主要包括layout、appender、loglevel等內容,可以參考:
http://masterdog.bokee.com/153892.html
寫的非常nice
4. 包裝
logcplus包裝下用起來非常方便,以下是我的包裝,供參考
Log.h
- // Log.h: interface for the Log class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_LOG_H__B87F71E3_FFAE_4CFA_A528_3F4F2FF7D69E__INCLUDED_)
- #define AFX_LOG_H__B87F71E3_FFAE_4CFA_A528_3F4F2FF7D69E__INCLUDED_
- #include "log4cplus/loglevel.h"
- #include "log4cplus/ndc.h"
- #include "log4cplus/logger.h"
- #include "log4cplus/configurator.h"
- #include "iomanip"
- #include "log4cplus/fileappender.h"
- #include "log4cplus/layout.h"
- #include "const.h"
- #include "common.h"
- #include "Main_config.h"
- using namespace log4cplus;
- using namespace log4cplus::helpers;
- //日志封裝
- #define TRACE(p) LOG4CPLUS_TRACE(Log::_logger, p)
- #define DEBUG(p) LOG4CPLUS_DEBUG(Log::_logger, p)
- #define NOTICE(p) LOG4CPLUS_INFO(Log::_logger, p)
- #define WARNING(p) LOG4CPLUS_WARN(Log::_logger, p)
- #define FATAL(p) LOG4CPLUS_ERROR(Log::_logger, p)
- // 日志控制類,全局共用一個日志
- class Log
- {
- public:
- // 打開日志
- bool open_log();
- // 獲得日志實例
- static Log& instance();
- static Logger _logger;
- private:
- Log();
- virtual ~Log();
- //log文件路徑及名稱
- char _log_path[PATH_SIZE];
- char _log_name[PATH_SIZE];
- };
- #endif // !defined(AFX_LOG_H__B87F71E3_FFAE_4CFA_A528_3F4F2FF7D69E__INCLUDED_)
Log.cpp:
- // Log.cpp: implementation of the Log class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "Log.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- Logger Log::_logger = log4cplus::Logger::getInstance("main_log");
- Log::Log()
- {
- snprintf(_log_path, sizeof(_log_path), "%s", "../log");
- snprintf(_log_name, sizeof(_log_name), "%s/%s.%s", _log_path, execname, "log");
- }
- Log::~Log()
- {
- }
- Log& Log::instance()
- {
- static Log log;
- return log;
- }
- bool Log::open_log()
- {
- int Log_level = Main_config::instance().get_config().Read("LOG_LEVEL", 0);
- /* step 1: Instantiate an appender object */
- SharedAppenderPtr _append(new FileAppender(_log_name));
- _append->setName("file log test");
- /* step 2: Instantiate a layout object */
- std::string pattern = "[%p] [%d{%m/%d/%y %H:%M:%S}] [%t] - %m %n";
- std::auto_ptr<Layout> _layout(new PatternLayout(pattern));
- /* step 3: Attach the layout object to the appender */
- _append->setLayout(_layout);
- /* step 4: Instantiate a logger object */
- /* step 5: Attach the appender object to the logger */
- Log::_logger.addAppender(_append);
- /* step 6: Set a priority for the logger */
- Log::_logger.setLogLevel(Log_level);
- return true;
- }
int Log_level = Main_config::instance().get_config().Read("LOG_LEVEL", 0);
Main_config是我自己包裝的一個配置類(參考:http://blog.csdn.net/yfkiss/article/details/6802451),通過讀取配置設置log level。
使用:
#inlucde "Log.h"
程序初始化的時候:
// 打開日志
if (!Log::instance().open_log())
{
std::cout << "Log::open_log() failed" << std::endl;
return false;
}
然后使用NOTICE、FATAL等就可以打印日志到文件。
- #include "Log.h"
- ....
- // 打開日志
- if (!Log::instance().open_log())
- {
- std::cout << "Log::open_log() failed" << std::endl;
- return false;
- }
- .....
- NOTICE("Server init succ");
- FATAL("Server run failed");
