From 76ceb6370c2958490cdb58beea99cdde4271da49 Mon Sep 17 00:00:00 2001 From: Nathan Harris Date: Wed, 24 Apr 2019 10:34:29 -0700 Subject: [PATCH] Fix incorrect default logger label in `RedisConnection` static factory method --- Sources/NIORedis/RedisClient.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/NIORedis/RedisClient.swift b/Sources/NIORedis/RedisClient.swift index 17254b9..c729f74 100644 --- a/Sources/NIORedis/RedisClient.swift +++ b/Sources/NIORedis/RedisClient.swift @@ -166,7 +166,7 @@ extension RedisConnection { to socket: SocketAddress, with password: String? = nil, on eventLoopGroup: EventLoopGroup, - logger: Logger = Logger(label: "NIORedis.RedisClient") + logger: Logger = Logger(label: "NIORedis.RedisConnection") ) -> EventLoopFuture { let bootstrap = ClientBootstrap.makeRedisDefault(using: eventLoopGroup)