// // C++ Interface: BuiltinLogger // // Description: Simple built-in logger. // Logs to stdout/stderr. // Useful when plugins are not loaded. // // // Author: Alexander Petrov , (C) 2006 // Created: Sat Feb 25 2006 // /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef SIMBUILTINLOGGER_H #define SIMBUILTINLOGGER_H #include "simapi.h" namespace SIM { class BuiltinLogger : public EventReceiver { public: BuiltinLogger(unsigned logLevel = L_ERROR | L_WARN, unsigned priority = LowPriority); virtual ~BuiltinLogger(); private: virtual void *processEvent(Event *e); unsigned m_logLevel; }; } #endif