X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FIOStreamTarget.hh;h=05f9eee1564abc00068a07fa551df87f3f857233;hb=28489b2b034740ce21bcce6f38b8fa1701948b03;hp=84e66fc5047ca77dd67e9c403a721164ab576a7a;hpb=a1a6c76a214ad1935032826713cabaf9ac57bf07;p=senf.git diff --git a/Utils/Logger/IOStreamTarget.hh b/Utils/Logger/IOStreamTarget.hh index 84e66fc..05f9eee 100644 --- a/Utils/Logger/IOStreamTarget.hh +++ b/Utils/Logger/IOStreamTarget.hh @@ -40,11 +40,9 @@ namespace log { /** \brief Write %log messages to arbitrary std::ostream This target will write %log messages to an arbitrary std::ostream in the format -
-         [] 
-        
+ \verbatim [][] \endverbatim - The \e area will be omitted it it is \c senf::log::DefaultArea. + The \e area will be omitted if it is \c senf::log::DefaultArea. The date formatting is set using the Boost.DateTime date_facet, e.g.: \code @@ -75,16 +73,15 @@ namespace log { /////////////////////////////////////////////////////////////////////////// protected: - - private: - void v_write(boost::posix_time::ptime timestamp, std::string const & stream, + void v_write(time_type timestamp, std::string const & stream, std::string const & area, unsigned level, std::string const & message); + private: std::ostream & stream_; + static char const * const LEVELNAMES_[8]; }; - }} ///////////////////////////////hh.e////////////////////////////////////////