1 #ifndef GRAIL_DEFAULT_SINK_H 
    2 #define GRAIL_DEFAULT_SINK_H 
   19         void Log(
const std::string& message) 
override;
 
The DefaultSink class - sink writing messages to standard system output.
Definition: DefaultSink.hh:14
 
void Log(const std::string &message) override
Log - override this method to define how the messege should be logged.
Definition: DefaultSink.cpp:12
 
The Sink class - destination of logger messages.
Definition: Sink.hh:13