diff options
author | Adam <Adam@anope.org> | 2011-08-20 00:51:39 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-20 00:51:39 -0400 |
commit | a68d17c17e904881b580d29290ae37bb2627b51b (patch) | |
tree | 017201a473607892cb5cd9c690da8ec54aecdfde /src/protocol.cpp | |
parent | fa3b74a5b49ca7a2c42387bb7b5aa24e09c369d6 (diff) |
Moved the ERROR log message out of debug
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r-- | src/protocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index 8517c73b6..7e9fca07a 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -542,7 +542,7 @@ bool IRCdMessage::OnCapab(const Anope::string &, const std::vector<Anope::string bool IRCdMessage::OnError(const Anope::string &, const std::vector<Anope::string> ¶ms) { if (!params.empty()) - Log(LOG_DEBUG) << params[0]; + Log() << params[0]; return true; } |