Add libboost-signals library to build setup
[senf.git] / Utils / Logger / IOStreamTarget.hh
index 11935be..8aa5829 100644 (file)
@@ -79,6 +79,8 @@ namespace log {
                                              By default, the date-time will be written in extended
                                              ISO format.
                                              \param[in] format Date/Time format string */
+
+        void tag(std::string const & tag);
         
     protected:
         void v_write(time_type timestamp, std::string const & stream, 
@@ -88,6 +90,7 @@ namespace log {
     private:
         std::ostream & stream_;
 
+        std::string tag_;
         std::stringstream datestream_;
         bool noformat_;
         bool showTime_;
@@ -95,7 +98,7 @@ namespace log {
         bool showLevel_;
         bool showArea_;
 
-        static char const * const LEVELNAMES_[8];
+        time_type timeBase_;
     };
 
 }}