1 // logging.hpp
2 
3 // Boost Logging library
4 //
5 // Author: John Torjo, www.torjo.com
6 //
7 // Copyright (C) 2007 John Torjo (see www.torjo.com for email)
8 //
9 // Distributed under the Boost Software License, Version 1.0.
10 //    (See accompanying file LICENSE_1_0.txt or copy at
11 //          http://www.boost.org/LICENSE_1_0.txt)
12 //
13 // See http://www.boost.org for updates, documentation, and revision history.
14 // See http://www.torjo.com/log2/ for more details
15 
16 
17 #ifndef JT28092007_logging_HPP_DEFINED
18 #define JT28092007_logging_HPP_DEFINED
19 
20 #include <hpx/util/logging/detail/fwd.hpp>
21 #include <hpx/util/logging/detail/filter.hpp>
22 #include <hpx/util/logging/detail/logger.hpp>
23 #include <hpx/util/logging/detail/log_keeper.hpp>
24 #include <hpx/util/logging/detail/macros.hpp>
25 #include <hpx/util/logging/detail/level.hpp>
26 
27 
28 namespace hpx { namespace util { namespace logging {
29 
30 /**
31 @file hpx/util/logging/logging.hpp
32 
33 Include this file when you're using the logging lib, but don't necessarily want to
34 use @ref manipulator "formatters and destinations".
35 If you want to use @ref manipulator "formatters and destinations",
36 then you can include this one instead:
37 
38 @code
39 #include <hpx/util/logging/format_fwd.hpp>
40 @endcode
41 
42 */
43 
44 }}}
45 
46 #endif
47