]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/log/test/test_cmake/log_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / log / test / test_cmake / log_test.cpp
CommitLineData
1e59de90
TL
1// Copyright (c) 2021 Andrey Semashev
2//
3// Distributed under the Boost Software License, Version 1.0.
4// See accompanying file LICENSE_1_0.txt or copy at
5// https://www.boost.org/LICENSE_1_0.txt)
6
7#include <boost/log/trivial.hpp>
8#include <boost/log/common.hpp>
9#include <boost/log/core.hpp>
10#include <boost/log/attributes.hpp>
11#include <boost/log/sinks.hpp>
12#include <boost/log/exceptions.hpp>
13#include <boost/log/expressions.hpp>
14#include <boost/log/sources/severity_channel_logger.hpp>
15
16int main()
17{
18 BOOST_LOG_TRIVIAL(info) << "Hello world!";
19}