• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 // Copyright 2018 Peter Dimov.
3 //
4 // Distributed under the Boost Software License, Version 1.0.
5 //
6 // See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt
8 
9 #include <boost/log/trivial.hpp>
10 
main()11 int main()
12 {
13     BOOST_LOG_TRIVIAL(info) << "An informational message";
14     BOOST_LOG_TRIVIAL(warning) << "A warning message";
15 }
16