icinga2/base/consolelogger.h

19 lines
258 B
C++

#ifndef CONSOLELOGGER_H
#define CONSOLELOGGER_H
namespace icinga
{
class ConsoleLogger : public Logger
{
public:
ConsoleLogger(LogSeverity minSeverity);
protected:
virtual void ProcessLogEntry(const LogEntry& entry);
};
}
#endif /* CONSOLELOGGER_H */