]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/logger.h
1e043f4f1537bd83ec1dec94c416b4160f4b310b
[user/henk/code/inspircd.git] / include / logger.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __LOGMANAGER_H
15 #define __LOGMANAGER_H
16
17 class CoreExport LogStream : public classbase
18 {
19  private:
20         InspIRCd *ServerInstance;
21         std::string type;
22  public:
23         LogStream(InspIRCd *Instance, const std::string &type)
24         {
25                 this->ServerInstance = Instance;
26                 this->type = type;
27         }
28
29         virtual void OnLog(int loglevel, const std::string &msg);
30 };
31
32 class CoreExport LogManager : public classbase
33 {
34  private:
35         InspIRCd *ServerInstance;
36         std::map<std::string, std::vector<LogStream *> > LogStreams;
37  public:
38         LogManager(InspIRCd *Instance)
39         {
40                 ServerInstance = Instance;
41         }
42
43         bool AddLogType(const std::string &type, LogStream *l);
44         bool DelLogType(const std::string &type, LogStream *l);
45         void Log(const std::string &type, int loglevel, const std::string &msg);
46 };
47
48 #endif