diff options
Diffstat (limited to 'modules/commands/os_ignore.cpp')
-rw-r--r-- | modules/commands/os_ignore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/os_ignore.cpp b/modules/commands/os_ignore.cpp index a8564a246..07d05bd36 100644 --- a/modules/commands/os_ignore.cpp +++ b/modules/commands/os_ignore.cpp @@ -105,7 +105,7 @@ class OSIgnoreService : public IgnoreService if (id.time && id.time <= Anope::CurTime) { - Log(LOG_DEBUG) << "Expiring ignore entry " << id.mask; + Log(LOG_NORMAL, "expire/ignore", Config->GetClient("OperServ")) << "Expiring ignore entry " << id.mask; this->ignores.erase(ign); } else @@ -212,7 +212,7 @@ class CommandOSIgnore : public Command if (id.time && id.time <= Anope::CurTime) { - Log(LOG_DEBUG) << "Expiring ignore entry " << id.mask; + Log(LOG_NORMAL, "expire/ignore", Config->GetClient("OperServ")) << "Expiring ignore entry " << id.mask; ignores.erase(it); } } |