summaryrefslogtreecommitdiff
path: root/src/protocol.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-08-20 00:51:39 -0400
committerAdam <Adam@anope.org>2011-08-21 14:56:53 -0400
commit232af7fa7a0a3828019cab3e2a17759c804c223a (patch)
tree3833757406be99d6ad6feff9855541fa389e0593 /src/protocol.cpp
parent9c8a789aa04b42e5f1bdb4cfb28f3c57063f1216 (diff)
Moved the ERROR log message out of debug
(cherry picked from commit a68d17c17e904881b580d29290ae37bb2627b51b)
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r--src/protocol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp
index ddf1557bd..72d384940 100644
--- a/src/protocol.cpp
+++ b/src/protocol.cpp
@@ -581,7 +581,7 @@ bool IRCdMessage::OnCapab(const Anope::string &, const std::vector<Anope::string
bool IRCdMessage::OnError(const Anope::string &, const std::vector<Anope::string> &params)
{
if (!params.empty())
- Log(LOG_DEBUG) << params[0];
+ Log() << params[0];
return true;
}