From: Remi Gacogne Date: Tue, 6 Jan 2026 20:36:07 +0000 (+0100) Subject: dnsdist: In the ctor we want to use the base class version X-Git-Tag: rec-5.4.0-beta1~33^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59d05ce085046eefc727409182bd97cf74dd49f8;p=thirdparty%2Fpdns.git dnsdist: In the ctor we want to use the base class version Signed-off-by: Remi Gacogne --- diff --git a/pdns/dnsdistdist/dnsdist-nghttp2.cc b/pdns/dnsdistdist/dnsdist-nghttp2.cc index 8d1c9ddc59..855ab63ea4 100644 --- a/pdns/dnsdistdist/dnsdist-nghttp2.cc +++ b/pdns/dnsdistdist/dnsdist-nghttp2.cc @@ -812,7 +812,7 @@ DoHConnectionToBackend::DoHConnectionToBackend(const std::shared_ptrtcpDiedSendingQuery; VERBOSESLOG(infolog("Unable to create a callback object for a new HTTP/2 session"), - getLogger()->info(Logr::Info, "Unable to create a callback object for a new HTTP/2 session")); + ConnectionToBackend::getLogger()->info(Logr::Info, "Unable to create a callback object for a new HTTP/2 session")); return; } std::unique_ptr callbacks(cbs, nghttp2_session_callbacks_del); @@ -830,7 +830,7 @@ DoHConnectionToBackend::DoHConnectionToBackend(const std::shared_ptrtcpDiedSendingQuery; VERBOSESLOG(infolog("Could not allocate a new HTTP/2 session"), - getLogger()->info(Logr::Info, "Could not allocate a new HTTP/2 session")); + ConnectionToBackend::getLogger()->info(Logr::Info, "Could not allocate a new HTTP/2 session")); return; } @@ -855,7 +855,7 @@ DoHConnectionToBackend::DoHConnectionToBackend(const std::shared_ptrtcpDiedSendingQuery; VERBOSESLOG(infolog("Could not submit SETTINGS: %s", nghttp2_strerror(rv)), - getLogger()->error(Logr::Info, nghttp2_strerror(rv), "Could not submit SETTINGS")); + ConnectionToBackend::getLogger()->error(Logr::Info, nghttp2_strerror(rv), "Could not submit SETTINGS")); return; } }