|  | @@ -198,7 +198,9 @@ public class ChildMemoryCircuitBreaker implements CircuitBreaker {
 | 
	
		
			
				|  |  |      @Override
 | 
	
		
			
				|  |  |      public void addWithoutBreaking(long bytes) {
 | 
	
		
			
				|  |  |          long u = used.addAndGet(bytes);
 | 
	
		
			
				|  |  | -        logger.trace(() -> format("[%s] Adjusted breaker by [%s] bytes, now [%s]", this.name, bytes, u));
 | 
	
		
			
				|  |  | +        if (logger.isTraceEnabled()) {
 | 
	
		
			
				|  |  | +            logger.trace("[{}] Adjusted breaker by [{}] bytes, now [{}]", this.name, bytes, u);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  |          assert u >= 0 : "Used bytes: [" + u + "] must be >= 0";
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 |