Fix incorrect default logger label in RedisConnection static factory method

This commit is contained in:
Nathan Harris
2019-04-24 10:34:29 -07:00
parent 864c4bcff6
commit 76ceb6370c
+1 -1
View File
@@ -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<RedisConnection> {
let bootstrap = ClientBootstrap.makeRedisDefault(using: eventLoopGroup)