In Boost Log, how do I format a custom severity_level using a format string?

北城余情 提交于 2019-12-09 18:03:03

问题


I'm using boost log in my C++ program, and I have a custom severity_logger< severity_level > using a severity_level enum that I defined. Then I create my log sink with the format string "%TimeStamp% [%ThreadID%] %Severity% %Module% - %Message%" but it doesn't display the severity where I have %Severity% but instead is just blank in that position. For example, 2013-07-29 10:31 [0xDEADBEEF] my.Module - Hello World. What do I need to do in my format string to make it display the severity level?

Here's a portion of my code:

#define NUM_SEVERITY_LEVELS 6
enum severity_level
{ 
  // These are deliberately the same levels that log4j uses
  trace = 0,
  debug = 1,
  info = 2,
  warning = 3,
  error = 4,                  
  fatal = 5                   
};  

typedef src::severity_logger< severity_level > logger_t;

const char* severity_level_str[NUM_SEVERITY_LEVELS] = {
  "TRACE",
  "DEBUG",
  "INFO",
  "WARNING",
  "ERROR",
  "FATAL" 
};

template< typename CharT, typename TraitsT >
std::basic_ostream< CharT, TraitsT >&
operator<< (
  std::basic_ostream< CharT, TraitsT >& strm,
  severity_level lvl
)
{
    const char* str = severity_level_str[lvl];
    if (lvl < NUM_SEVERITY_LEVELS && lvl >= 0)
        strm << str;
    else
        strm << static_cast< int >(lvl);
    return strm;
}

#define FORMAT_STRING "%TimeStamp% [%ThreadID%] %Severity% %Module% - %Message%"

boost::shared_ptr< sinks::synchronous_sink< sinks::text_file_backend > >
LOG_CREATE_SINK(const std::string& strLogFilename, bool fAutoFlush)
{ 
  return logging::add_file_log(
    keywords::file_name = strLogFilename,
    keywords::open_mode = (std::ios_base::app | std::ios_base::out) & ~std::ios_base::in,
    keywords::auto_flush = fAutoFlush,
    keywords::format = FORMAT_STRING );
}

回答1:


You should add

boost::log::register_simple_formatter_factory< severity_level, char >("Severity");

before calling LOG_CREATE_SINK method. Like this:

int main(int argc, char* argv[])
{
    boost::log::register_simple_formatter_factory< severity_level, char >("Severity");
    LOG_CREATE_SINK("log_file.txt", true);
    logger_t logger;
    BOOST_LOG_SEV(logger, trace)
           << "text message";
    return 0;
}

Result:

[] TRACE  - text message


来源:https://stackoverflow.com/questions/17930553/in-boost-log-how-do-i-format-a-custom-severity-level-using-a-format-string

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!