Skip to content

Commit 76ceb63

Browse files
committed
Fix incorrect default logger label in RedisConnection static factory method
1 parent 864c4bc commit 76ceb63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/NIORedis/RedisClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ extension RedisConnection {
166166
to socket: SocketAddress,
167167
with password: String? = nil,
168168
on eventLoopGroup: EventLoopGroup,
169-
logger: Logger = Logger(label: "NIORedis.RedisClient")
169+
logger: Logger = Logger(label: "NIORedis.RedisConnection")
170170
) -> EventLoopFuture<RedisConnection> {
171171
let bootstrap = ClientBootstrap.makeRedisDefault(using: eventLoopGroup)
172172

0 commit comments

Comments
 (0)