Skip to content

Commit

Permalink
Reword circuit breaker configuration log message (#3175)
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Gray <[email protected]>
  • Loading branch information
graytaylor0 authored Aug 16, 2023
1 parent 1a17c08 commit e3b425e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class HeapCircuitBreaker implements InnerCircuitBreaker, AutoCloseable {
scheduledExecutorService
.scheduleAtFixedRate(this::checkMemory, 0L, checkInterval.toMillis(), TimeUnit.MILLISECONDS);

LOG.info("Heap circuit breaker with usage of {} bytes.", usageBytes);
LOG.info("Circuit breaker heap limit is set to {} bytes.", usageBytes);
}

@Override
Expand Down

0 comments on commit e3b425e

Please sign in to comment.