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/06/19 12:54:21 UTC

[camel] 20/21: (chores) camel-zipkin: fixed incorrect log marker usage

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 e5224a056a99a06fafab1f4f72c231468e4270fe
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Sun Jun 19 11:49:39 2022 +0200

    (chores) camel-zipkin: fixed incorrect log marker usage
---
 .../src/main/java/org/apache/camel/zipkin/ZipkinTracer.java             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ZipkinTracer.java b/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ZipkinTracer.java
index 7d60ad1980b..6934986f285 100644
--- a/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ZipkinTracer.java
+++ b/components/camel-zipkin/src/main/java/org/apache/camel/zipkin/ZipkinTracer.java
@@ -601,7 +601,7 @@ public class ZipkinTracer extends ServiceSupport implements RoutePolicyFactory,
             brave = braves.get(serviceName);
 
             if (brave == null && useFallbackServiceNames) {
-                LOG.debug("Creating Tracing assigned to serviceName: {}", serviceName + " as fallback");
+                LOG.debug("Creating Tracing assigned to serviceName: {} as fallback", serviceName);
                 brave = newTracing(serviceName);
                 braves.put(serviceName, brave);
             }