From: Ensar Sarajčić Date: Fri, 7 Feb 2025 11:38:18 +0000 (+0100) Subject: Implement `RemoteLoggerPool::name` X-Git-Tag: dnsdist-2.0.0-alpha1~111^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94e3fdc93b87e37b64ac39a05f14a51b2490440f;p=thirdparty%2Fpdns.git Implement `RemoteLoggerPool::name` --- diff --git a/pdns/remote_logger_pool.hh b/pdns/remote_logger_pool.hh index 0a203305a2..9cb84df892 100644 --- a/pdns/remote_logger_pool.hh +++ b/pdns/remote_logger_pool.hh @@ -45,7 +45,7 @@ public: [[nodiscard]] std::string name() const override { - return ""; + return "Pool of " + std::to_string(d_pool.size()) + " loggers"; } [[nodiscard]] std::string toString() override;