From d0395fb84f4019da322450ce3fa0be9d1db28137 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Wed, 27 May 2015 09:44:53 -0400 Subject: [PATCH] INT-3722: Fix Typo in TCP OG Log Message --- .../springframework/integration/ip/tcp/TcpOutboundGateway.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/TcpOutboundGateway.java b/spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/TcpOutboundGateway.java index eb1f167b36..dda73ad451 100644 --- a/spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/TcpOutboundGateway.java +++ b/spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/TcpOutboundGateway.java @@ -131,7 +131,7 @@ public class TcpOutboundGateway extends AbstractReplyProducingMessageHandler throw new MessageTimeoutException(requestMessage, "Timed out waiting for response"); } if (logger.isDebugEnabled()) { - logger.debug("Respose " + replyMessage); + logger.debug("Response " + replyMessage); } return replyMessage; }