From bd947f27f3fb93613d2bba47596c51db0beb3abd Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 12 Jun 2025 13:32:58 +0200 Subject: [PATCH] redis: Fix broken log statement Signed-off-by: Steffen Vogel --- lib/nodes/redis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nodes/redis.cpp b/lib/nodes/redis.cpp index 0faa454cb..1a69c8a40 100644 --- a/lib/nodes/redis.cpp +++ b/lib/nodes/redis.cpp @@ -44,7 +44,7 @@ RedisConnection::RedisConnection(const sw::redis::ConnectionOptions &opts) onMessage(channel, msg); }); - logger->info("New connection: {}", opts); + logger->info("New connection: {}:{}", opts.host, opts.port); state = State::INITIALIZED; }