aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sadie Powell2025-09-07 14:01:06 +0100
committerGravatar Sadie Powell2025-09-07 14:01:06 +0100
commit5f418924ec8a0bb4b87a4d3c1c93a2a8084aa350 (patch)
tree365d1e7db381c2cec3b0cdc679e4b25a1b3c9819
parentFix an iterator invalidation when finding the messageflood counter. (diff)
Fix a log message that should be a debug message not critical.
-rw-r--r--src/coremods/core_dns.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_dns.cpp b/src/coremods/core_dns.cpp
index 237a5fc81..985b1787e 100644
--- a/src/coremods/core_dns.cpp
+++ b/src/coremods/core_dns.cpp
@@ -406,7 +406,7 @@ class MyManager final
*/
bool CheckCache(DNS::Request* req, const DNS::Question& question)
{
- ServerInstance->Logs.Critical(MODNAME, "cache: Checking cache for {}", question.name);
+ ServerInstance->Logs.Debug(MODNAME, "cache: Checking cache for {}", question.name);
cache_map::iterator it = this->cache.find(question);
if (it == this->cache.end())