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
ログにファイル名や行番号は出力されません。私は何が欠けていますか?