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