You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/03/16 08:03:31 UTC

[camel] 04/04: CAMEL-17762: adjust overly verbose debug message

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 40abf3166c7472e1628b03370503655a821fb571
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue Mar 15 15:22:49 2022 +0100

    CAMEL-17762: adjust overly verbose debug message
---
 .../java/org/apache/camel/processor/resume/ResumableCompletion.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/camel-core-processor/src/main/java/org/apache/camel/processor/resume/ResumableCompletion.java b/core/camel-core-processor/src/main/java/org/apache/camel/processor/resume/ResumableCompletion.java
index 5b213cb..f80f71e 100644
--- a/core/camel-core-processor/src/main/java/org/apache/camel/processor/resume/ResumableCompletion.java
+++ b/core/camel-core-processor/src/main/java/org/apache/camel/processor/resume/ResumableCompletion.java
@@ -46,9 +46,9 @@ public class ResumableCompletion implements Synchronization {
         if (offset instanceof Resumable) {
             Resumable<?, ?> resumable = (Resumable<?, ?>) offset;
 
-            if (LOG.isDebugEnabled()) {
-                LOG.debug("Processing the resumable: {}", resumable.getAddressable());
-                LOG.debug("Processing the resumable of type: {}", resumable.getLastOffset().offset());
+            if (LOG.isTraceEnabled()) {
+                LOG.trace("Processing the resumable: {}", resumable.getAddressable());
+                LOG.trace("Processing the resumable of type: {}", resumable.getLastOffset().offset());
             }
 
             if (resumeStrategy instanceof UpdatableConsumerResumeStrategy) {