pion  5.0.6
logger.cpp
1 // ---------------------------------------------------------------------
2 // pion: a Boost C++ framework for building lightweight HTTP interfaces
3 // ---------------------------------------------------------------------
4 // Copyright (C) 2007-2014 Splunk Inc. (https://github.com/splunk/pion)
5 //
6 // Distributed under the Boost Software License, Version 1.0.
7 // See http://www.boost.org/LICENSE_1_0.txt
8 //
9 
10 #include <pion/logger.hpp>
11 
12 namespace pion { // begin namespace pion
13 
14 
15 // static members of logger
16 #if defined(PION_USE_OSTREAM_LOGGING)
17 logger::log_priority_type logger::m_priority = logger::LOG_LEVEL_INFO;
18 #endif
19 
20 
21 } // end namespace pion