Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to redirect Boost.Log to file

I want a simple log file in a concurrent application. I've download Boost.Log v2.0 and using compiled it with Boost 1.53.0.

The problem is that Boost.Log output on console. I'm using BOOST_LOG_TRIVIAL(trace).

Is there a nice way to redirect BOOST_LOG_TRIVIAL to a file?

like image 912
Elvis Dukaj Avatar asked Apr 19 '13 10:04

Elvis Dukaj


People also ask

Is boost log thread safe?

It is thread-safe regardless of the kind of loggers you use.

What is boost log?

Boost. Log, part of collection of the Boost C++ Libraries, provides tools for adding logging to libraries and applications.


1 Answers

You can make BOOST_LOG_TRIVIAL use a file. Note that most of the boost::log examples use a namespace alias as shown below.

#include <boost/log/core.hpp>
#include <boost/log/trivial.hpp>
#include <boost/log/expressions.hpp>
#include <boost/log/utility/setup/file.hpp>

namespace logging = boost::log;

void init()
{
    logging::add_file_log("sample.log");

    logging::core::get()->set_filter
    (
        logging::trivial::severity >= logging::trivial::info
    );
}

And in main:

int main(int, char*[])
{
    init();

    BOOST_LOG_TRIVIAL(trace) << "A trace severity message";
 // other types of severity
    BOOST_LOG_TRIVIAL(fatal) << "A fatal severity message";

    return 0;
}
like image 83
m0nhawk Avatar answered Sep 21 '22 17:09

m0nhawk