diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-09 12:41:17 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-09 12:41:17 +0000 |
commit | af7e1a1ca8b36064593becf62b1a91468ad32237 (patch) | |
tree | 6d2bdd3f4522c7bff69306fb6d3aa2f488e38d9c /include/logger.h | |
parent | db1c78986c8055f59b9bdf98a883dfbf3f4db6b9 (diff) |
New logging implementation. Also write messages about InspIRCd::Log() being deprecated. Any takers on changing it all to use the new system? :P. STILL TODO: create <log> blocks in config, add a method called to 'cleanup' (or use destructor) of logstreams, add a method to logmanager to initiate destruction of all logstreams.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8858 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/logger.h')
-rw-r--r-- | include/logger.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/logger.h b/include/logger.h index 1e043f4f1..d32c3d184 100644 --- a/include/logger.h +++ b/include/logger.h @@ -16,7 +16,7 @@ class CoreExport LogStream : public classbase { - private: + protected: InspIRCd *ServerInstance; std::string type; public: @@ -26,7 +26,7 @@ class CoreExport LogStream : public classbase this->type = type; } - virtual void OnLog(int loglevel, const std::string &msg); + virtual void OnLog(int loglevel, const std::string &msg) { } }; class CoreExport LogManager : public classbase @@ -34,6 +34,7 @@ class CoreExport LogManager : public classbase private: InspIRCd *ServerInstance; std::map<std::string, std::vector<LogStream *> > LogStreams; + std::vector<LogStream *> GlobalLogStreams; //holds all logstreams with a type of * public: LogManager(InspIRCd *Instance) { |