/* */ #ifndef D_SIMPLE_LOG_FORMATTER_H #define D_SIMPLE_LOG_FORMATTER_H #include "LogFormatter.h" namespace aria2 { class SimpleLogFormatter:public LogFormatter { public: SimpleLogFormatter(); virtual ~SimpleLogFormatter(); virtual void writeLog (std::ostream& o, Logger::LEVEL logLevel, const std::string& logLevelLabel, const char* msg, va_list ap); virtual void writeStackTrace (std::ostream& o, Logger::LEVEL logLevel, const std::string& logLevelLabel, const Exception& e); }; } // namespace aria2 #endif // D_SIMPLE_LOG_FORMATTER_H