diff options
| author | Adam <Adam@anope.org> | 2011-08-20 00:51:39 -0400 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2011-08-21 14:56:53 -0400 |
| commit | 232af7fa7a0a3828019cab3e2a17759c804c223a (patch) | |
| tree | 3833757406be99d6ad6feff9855541fa389e0593 /src | |
| parent | 9c8a789aa04b42e5f1bdb4cfb28f3c57063f1216 (diff) | |
Moved the ERROR log message out of debug
(cherry picked from commit a68d17c17e904881b580d29290ae37bb2627b51b)
Diffstat (limited to 'src')
| -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 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> ¶ms) { if (!params.empty()) - Log(LOG_DEBUG) << params[0]; + Log() << params[0]; return true; } |
