From 06b5594ace00b4a4a0ebe2905c6c29609220ce7e Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 24 Mar 2025 15:12:26 +0100 Subject: [PATCH] auth: fix log string in case there are notifies needed --- pdns/auth-primarycommunicator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/auth-primarycommunicator.cc b/pdns/auth-primarycommunicator.cc index 1b9ff3b3a4..82314c3cd8 100644 --- a/pdns/auth-primarycommunicator.cc +++ b/pdns/auth-primarycommunicator.cc @@ -198,7 +198,7 @@ void CommunicatorClass::primaryUpdateCheck(PacketHandler* P) g_log << Logger::Info << "no primary or producer domains need notifications" << endl; } else { - g_log << Logger::Info << cmdomains.size() << " domain" << addS(cmdomains.size()) << " for which we are primary or consumer need" << addS(cmdomains.size()) << " notifications" << endl; + g_log << Logger::Info << cmdomains.size() << " domain" << addS(cmdomains.size()) << " for which we are primary or producer need" << addS(cmdomains.size()) << " notifications" << endl; } for (auto& di : cmdomains) { -- 2.47.2