2

我正在使用log4cplus库(v1.0.0),记录器设置如下:

std::string formatString("%-5p [%F,%L] %m%n");
std::auto_ptr <log4cplus::Layout> layout(new log4cplus::PatternLayout(formatString));
logAppender->setLayout(layout);

我正在使用以下功能进行记录:

log4cplus::Logger logger;
logger.log(INFO_LOG_LEVEL, msg);

日志中打印的日志信息为:

DEBUG [,] My log message
INFO  [,] My other log message

它不会在日志中打印文件名或行号。我错过了什么?

4

1 回答 1

3

这是因为您没有将任何信息传递给log()函数。log()函数声明如下:

void log(LogLevel ll, const log4cplus::tstring& message,
         const char* file=NULL, int line=-1) const;

如您所见,除非您提供文件和行信息,否则它会传入“空”值。

要么您自己传递信息,要么包含log4cplus/loggingmacros.h并使用提供的日志记录宏,这些宏会为您执行此操作。

于 2013-03-13T15:31:52.177 回答