mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 02:14:54 +00:00
Use proper logging placeholder for Netty logging
This commit is contained in:
parent
ec6ea9b403
commit
c1666f4a22
@ -323,7 +323,7 @@ public class Netty4Transport extends TcpTransport<Channel> {
|
||||
final Throwable cause = f.cause();
|
||||
Netty4Utils.maybeDie(cause);
|
||||
logger.warn((Supplier<?>) () ->
|
||||
new ParameterizedMessage("write and flush on the network layer failed (channel: [])", channel), cause);
|
||||
new ParameterizedMessage("write and flush on the network layer failed (channel: {})", channel), cause);
|
||||
assert cause instanceof Exception;
|
||||
listener.onFailure((Exception) cause);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user