diff options
author | Robby- <robby@chat.be> | 2013-10-04 05:45:28 +0200 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-10-05 00:33:03 -0400 |
commit | 97d7c21193c490f647ee059dd28d4a37a684cbb1 (patch) | |
tree | 7ec955a2a18d266d79739388511d8a053715340c /src/config.cpp | |
parent | e5b8435769f9c5aa5326a60811cfae6fda2f5807 (diff) |
Fix logging for log type 'other'.
os_ignore: Log expired ignores to the normal log level.
cs_drop: Allow Services Operators to actually drop channels in Read-Only mode.
os_akill, os_sxline, cs_akick: Log deletions by number.
Diffstat (limited to 'src/config.cpp')
-rw-r--r-- | src/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.cpp b/src/config.cpp index 27c3eccdc..40bfc0613 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -420,7 +420,7 @@ Conf::Conf() : Block("") spacesepstream(log->Get<const Anope::string>("servers")).GetTokens(l.servers); spacesepstream(log->Get<const Anope::string>("channels")).GetTokens(l.channels); spacesepstream(log->Get<const Anope::string>("users")).GetTokens(l.users); - spacesepstream(log->Get<const Anope::string>("normal")).GetTokens(l.normal); + spacesepstream(log->Get<const Anope::string>("other")).GetTokens(l.normal); this->LogInfos.push_back(l); } |