103 public std::streambuf
123 explicit LogStreamBuf(std::string log_level = UNKNOWN_LOG_LEVEL);
151 int overflow(
int c = -1)
override;
162 void setLevel(std::string level);
168 std::string getLevel();
203 void distribute_(std::string outstring);
206 std::string expandPrefix_(
const std::string & prefix, time_t time)
const;
237 bool isInCache_(std::string
const & line);
247 std::string addToCache_(std::string
const & line);
250 Size getNextLogCounter_();
267 virtual void logNotify();
349 void setLevel(std::string level);
355 std::string getLevel();
375 void insert(std::ostream & s);
387 void remove(std::ostream & s);
390 void insertNotification(std::ostream & s,
413 void setPrefix(
const std::ostream & s,
const std::string & prefix);
417 void setPrefix(
const std::string & prefix);
427 bool hasStream_(std::ostream & stream);
442 #define LOG_FATAL_ERROR \ 443 Log_fatal << __FILE__ << "(" << __LINE__ << "): " 459 Log_debug << __FILE__ << "(" << __LINE__ << "): " 461 OPENMS_DLLAPI
extern Logger::LogStream
Log_fatal;
462 OPENMS_DLLAPI
extern Logger::LogStream
Log_error;
463 OPENMS_DLLAPI
extern Logger::LogStream
Log_warn;
464 OPENMS_DLLAPI
extern Logger::LogStream
Log_info;
465 OPENMS_DLLAPI
extern Logger::LogStream
Log_debug;
std::string level_
Definition: LogStream.h:209
Logger::LogStream Log_debug
Global static instance of a LogStream to capture messages classified as debug output. By default it is not bound to any output stream. TOPP(AS)Base will connect cout, iff 0 < debug-level.
Logger::LogStream Log_warn
Global static instance of a LogStream to capture messages classified as warnings. By default it is bo...
static const std::string UNKNOWN_LOG_LEVEL
Definition: LogStream.h:113
Definition: LogStream.h:256
LogStream * registered_at_
Definition: LogStream.h:278
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
StreamStruct()
Definition: LogStream.h:182
std::list< StreamStruct > stream_list_
Definition: LogStream.h:210
bool delete_buffer_
Definition: LogStream.h:434
Log Stream Class.
Definition: LogStream.h:302
Logger::LogStream Log_info
Global static instance of a LogStream to capture messages classified as information. By default it is bound to cout.
std::ostream * stream
Definition: LogStream.h:178
std::map< Size, std::string > log_time_cache_
Cache of the occurrence sequence of the last two log messages.
Definition: LogStream.h:234
std::string prefix
Definition: LogStream.h:179
Logger::LogStream Log_error
Global static instance of a LogStream to capture messages classified as errors. By default it is boun...
std::stringstream stream_
Definition: LogStream.h:276
Size log_cache_counter_
Definition: LogStream.h:229
~StreamStruct()
Delete the notification target.
Definition: LogStream.h:188
Holds a stream that is connected to the LogStream. It also includes the minimum and maximum level at ...
Definition: LogStream.h:176
std::string incomplete_line_
Definition: LogStream.h:211
std::map< std::string, LogCacheStruct > log_cache_
Cache of the last two log messages.
Definition: LogStream.h:232
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
LogStreamNotifier * target
Definition: LogStream.h:180
Logger::LogStream Log_fatal
Global static instance of a LogStream to capture messages classified as fatal errors. By default it is bound to cerr.
char * pbuf_
Definition: LogStream.h:208
static const time_t MAX_TIME
Definition: LogStream.h:112
std::list< LogStreamBuf::StreamStruct >::iterator StreamIterator
Definition: LogStream.h:424
int counter
Definition: LogStream.h:222
Size timestamp
Definition: LogStream.h:221
Stream buffer used by LogStream.
Definition: LogStream.h:102
Holds a counter of occurrences and an index for the occurrence sequence of the corresponding log mess...
Definition: LogStream.h:219