mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8885 e03df62e-2008-0410-955e-edbf42e46eb7
47 lines
999 B
C++
47 lines
999 B
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;
|
|
|
|
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
|