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

ngircd: move metadata non-exietent user log message to debug

This commit is contained in:
Adam
2017-01-07 18:04:07 -05:00
parent 7cede5bb60
commit fe6271dffb
+1 -1
View File
@@ -317,7 +317,7 @@ struct IRCDMessageMetadata : IRCDMessage
User *u = User::Find(params[0]);
if (!u)
{
Log() << "received METADATA for non-existent user " << params[0];
Log(LOG_DEBUG) << "received METADATA for non-existent user " << params[0];
return;
}
if (params[1].equals_cs("accountname"))