2
0
mirror of https://github.com/boostorg/log.git synced 2026-01-20 04:42:11 +00:00
Files
log/test/test_cmake/log_test.cpp
2021-10-30 20:39:49 +03:00

20 lines
557 B
C++

// Copyright (c) 2021 Andrey Semashev
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
#include <boost/log/trivial.hpp>
#include <boost/log/common.hpp>
#include <boost/log/core.hpp>
#include <boost/log/attributes.hpp>
#include <boost/log/sinks.hpp>
#include <boost/log/exceptions.hpp>
#include <boost/log/expressions.hpp>
#include <boost/log/sources/severity_channel_logger.hpp>
int main()
{
BOOST_LOG_TRIVIAL(info) << "Hello world!";
}