inspircd/include/filelogger.h

50 lines
1.0 KiB
C++

/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2008 InspIRCd Development Team
* See: http://www.inspircd.org/wiki/index.php/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
#ifndef __LOG_H__
#define __LOG_H__
#include "logger.h"
/** Debug levels for use with InspIRCd::Log()
* */
enum DebugLevel
{
DEBUG = 10,
VERBOSE = 20,
DEFAULT = 30,
SPARSE = 40,
NONE = 50
};
/* Forward declaration -- required */
class InspIRCd;
/** A logging class which logs to a streamed file.
*/
class CoreExport FileLogStream : public LogStream
{
private:
FileWriter *f;
public:
FileLogStream(InspIRCd *Instance, int loglevel, FileWriter *fw);
virtual ~FileLogStream();
virtual void OnLog(int loglevel, const std::string &type, const std::string &msg);
};
#endif