diff options
| author | 2025-09-07 14:01:06 +0100 | |
|---|---|---|
| committer | 2025-09-07 14:01:06 +0100 | |
| commit | 5f418924ec8a0bb4b87a4d3c1c93a2a8084aa350 (patch) | |
| tree | 365d1e7db381c2cec3b0cdc679e4b25a1b3c9819 /src | |
| parent | Fix an iterator invalidation when finding the messageflood counter. (diff) | |
Fix a log message that should be a debug message not critical.
Diffstat (limited to 'src')
| -rw-r--r-- | src/coremods/core_dns.cpp | 2 |
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()) |
