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