Author: robbie
Date: Fri Jan 10 16:43:15 2014
New Revision: 1557184

URL: http://svn.apache.org/r1557184
Log:
QPID-5461: downgrade sevrity of IOException log messages. Fix wording of those 
messages

Modified:
    
qpid/trunk/qpid/java/broker-plugins/amqp-0-8-protocol/src/main/java/org/apache/qpid/server/protocol/v0_8/AMQProtocolEngine.java

Modified: 
qpid/trunk/qpid/java/broker-plugins/amqp-0-8-protocol/src/main/java/org/apache/qpid/server/protocol/v0_8/AMQProtocolEngine.java
URL: 
http://svn.apache.org/viewvc/qpid/trunk/qpid/java/broker-plugins/amqp-0-8-protocol/src/main/java/org/apache/qpid/server/protocol/v0_8/AMQProtocolEngine.java?rev=1557184&r1=1557183&r2=1557184&view=diff
==============================================================================
--- 
qpid/trunk/qpid/java/broker-plugins/amqp-0-8-protocol/src/main/java/org/apache/qpid/server/protocol/v0_8/AMQProtocolEngine.java
 (original)
+++ 
qpid/trunk/qpid/java/broker-plugins/amqp-0-8-protocol/src/main/java/org/apache/qpid/server/protocol/v0_8/AMQProtocolEngine.java
 Fri Jan 10 16:43:15 2014
@@ -1271,11 +1271,11 @@ public class AMQProtocolEngine implement
         }
         else if (throwable instanceof IOException)
         {
-            _logger.error("IOException caught in" + this + ", session closed 
implictly: " + throwable);
+            _logger.info("IOException caught in " + this + ", connection 
closed implicitly: " + throwable);
         }
         else
         {
-            _logger.error("Exception caught in" + this + ", closing session 
explictly: " + throwable, throwable);
+            _logger.error("Exception caught in " + this + ", closing 
connection explicitly: " + throwable, throwable);
 
 
             MethodRegistry methodRegistry = 
MethodRegistry.getMethodRegistry(getProtocolVersion());



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to