From be0e5e86d70671faf5bc6718265d1a7cf9940b8e Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Sat, 11 Jun 2016 20:16:00 +0200 Subject: [PATCH] Fix typo in log message Motivation: We had a typo in the log message. Modifications: Remove extra "s" in log message. Result: Correct spelling in log message. --- .../src/main/java/io/netty/channel/ChannelOutboundBuffer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/src/main/java/io/netty/channel/ChannelOutboundBuffer.java b/transport/src/main/java/io/netty/channel/ChannelOutboundBuffer.java index e10ebbc51d..d2da7800df 100644 --- a/transport/src/main/java/io/netty/channel/ChannelOutboundBuffer.java +++ b/transport/src/main/java/io/netty/channel/ChannelOutboundBuffer.java @@ -689,7 +689,7 @@ public final class ChannelOutboundBuffer { logger.warn("Failed to mark a promise as failure because it has succeeded already: {}", promise, cause); } else { logger.warn( - "Failed to mark a promise as failure because it hass failed already: {}, unnotified cause {}", + "Failed to mark a promise as failure because it has failed already: {}, unnotified cause {}", promise, ThrowableUtils.stackTraceToString(err), cause); } }