You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
445 B
C++
12 lines
445 B
C++
#include <boost/log/trivial.hpp>
|
|
|
|
int main(int, char*[])
|
|
{
|
|
BOOST_LOG_TRIVIAL(trace) << "A trace severity message";
|
|
BOOST_LOG_TRIVIAL(debug) << "A debug severity message";
|
|
BOOST_LOG_TRIVIAL(info) << "An informational severity message";
|
|
BOOST_LOG_TRIVIAL(warning) << "A warning severity message";
|
|
BOOST_LOG_TRIVIAL(error) << "An error severity message";
|
|
BOOST_LOG_TRIVIAL(fatal) << "A fatal severity message";
|
|
}
|