1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 23:46:39 +02:00

Moved the ERROR log message out of debug

This commit is contained in:
Adam
2011-08-20 00:51:39 -04:00
parent fa3b74a5b4
commit a68d17c17e
+1 -1
View File
@@ -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> &params)
{
if (!params.empty())
Log(LOG_DEBUG) << params[0];
Log() << params[0];
return true;
}