diff options
author | Adam <Adam@anope.org> | 2010-08-28 00:14:06 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-08-28 00:14:06 -0400 |
commit | 10d901084f8e395646adb63c9c54affb159bc634 (patch) | |
tree | 606a13304b8221d338e634b89ef0f8cabd194e7e /include/logger.h | |
parent | 334e5a4ef9067e1b0a87abd50a4aac9a711ea5ef (diff) |
Do not log RAWIO messages to services log channels, added a config option on whether or not to join bots to the log channels, and fixed two log messages in ns_identify
Diffstat (limited to 'include/logger.h')
-rw-r--r-- | include/logger.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/logger.h b/include/logger.h index 79a582503..518e2114f 100644 --- a/include/logger.h +++ b/include/logger.h @@ -71,6 +71,7 @@ class CoreExport LogInfo std::map<Anope::string, LogFile *> Logfiles; std::list<Anope::string> Sources; int LogAge; + bool Inhabit; std::list<Anope::string> Admin; std::list<Anope::string> Override; std::list<Anope::string> Commands; @@ -81,7 +82,7 @@ class CoreExport LogInfo bool RawIO; bool Debug; - LogInfo(int logage, bool normal, bool rawio, bool debug); + LogInfo(int logage, bool inhabit, bool normal, bool rawio, bool debug); ~LogInfo(); |