waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

main.cpp (445B)


      1 #include <boost/log/trivial.hpp>
      2 
      3 int main(int, char*[])
      4 {
      5     BOOST_LOG_TRIVIAL(trace) << "A trace severity message";
      6     BOOST_LOG_TRIVIAL(debug) << "A debug severity message";
      7     BOOST_LOG_TRIVIAL(info) << "An informational severity message";
      8     BOOST_LOG_TRIVIAL(warning) << "A warning severity message";
      9     BOOST_LOG_TRIVIAL(error) << "An error severity message";
     10     BOOST_LOG_TRIVIAL(fatal) << "A fatal severity message";
     11 }