Author: clebert.suconic
Date: 2012-03-01 08:55:34 -0500 (Thu, 01 Mar 2012)
New Revision: 12219
Modified:
branches/Branch_2_2_AS7/src/main/org/hornetq/core/server/impl/ServerConsumerImpl.java
Log:
JBPAPP-8282 - fixing logs
Modified:
branches/Branch_2_2_AS7/src/main/org/hornetq/core/server/impl/ServerConsumerImpl.java
===================================================================
---
branches/Branch_2_2_AS7/src/main/org/hornetq/core/server/impl/ServerConsumerImpl.java 2012-03-01
04:56:29 UTC (rev 12218)
+++
branches/Branch_2_2_AS7/src/main/org/hornetq/core/server/impl/ServerConsumerImpl.java 2012-03-01
13:55:34 UTC (rev 12219)
@@ -255,7 +255,10 @@
if (filter != null && !filter.match(message))
{
- log.trace("Reference " + ref + " is a noMatch on consumer
" + this);
+ if (log.isTraceEnabled())
+ {
+ log.trace("Reference " + ref + " is a noMatch on consumer
" + this);
+ }
return HandleStatus.NO_MATCH;
}
@@ -264,7 +267,6 @@
log.trace("Handling reference " + ref);
}
-
if (!browseOnly)
{
if (!preAcknowledge)
Show replies by date