ACTIVEMQ6-38 Overzealous logging for missing queue
This commit is contained in:
parent
8fcf81f5f7
commit
2d9125a7c6
|
@ -555,10 +555,17 @@ public class ServerSessionPacketHandler implements ChannelHandler
|
|||
response = new HornetQExceptionMessage(e);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (e.getType() == HornetQExceptionType.QUEUE_EXISTS)
|
||||
{
|
||||
HornetQServerLogger.LOGGER.debug("Caught exception", e);
|
||||
}
|
||||
else
|
||||
{
|
||||
HornetQServerLogger.LOGGER.caughtException(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Throwable t)
|
||||
{
|
||||
if (requiresResponse)
|
||||
|
|
Loading…
Reference in New Issue