1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 00:06:38 +02:00

Move log messages for status mode change for unknown user to debug

This commit is contained in:
Adam
2016-12-22 20:59:04 -05:00
parent ec7ce09ef4
commit 2b7f0084b7
+2 -2
View File
@@ -280,7 +280,7 @@ void Channel::SetModeInternal(MessageSource &setter, ChannelMode *ocm, const Ano
if (!u)
{
Log() << "MODE " << this->name << " +" << cm->mchar << " for non-existent user " << param;
Log(LOG_DEBUG) << "MODE " << this->name << " +" << cm->mchar << " for non-existent user " << param;
return;
}
@@ -351,7 +351,7 @@ void Channel::RemoveModeInternal(MessageSource &setter, ChannelMode *ocm, const
if (!u)
{
Log() << "Channel::RemoveModeInternal() MODE " << this->name << "-" << cm->mchar << " for non-existent user " << param;
Log(LOG_DEBUG) << "Channel::RemoveModeInternal() MODE " << this->name << "-" << cm->mchar << " for non-existent user " << param;
return;
}