1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 09:33:12 +02:00

Moved the ERROR log message out of debug

(cherry picked from commit a68d17c17e)
This commit is contained in:
Adam
2011-08-20 00:51:39 -04:00
parent 9c8a789aa0
commit 232af7fa7a
+1 -1
View File
@@ -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;
}