You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2019/04/08 06:01:35 UTC

[camel] 02/02: Add missing placeholder

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

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

commit f3f16f805c1c198197b8b9d29e9c693fd1b9f831
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Mon Apr 8 07:59:39 2019 +0200

    Add missing placeholder
---
 core/camel-util/src/main/java/org/apache/camel/util/TimeUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-util/src/main/java/org/apache/camel/util/TimeUtils.java b/core/camel-util/src/main/java/org/apache/camel/util/TimeUtils.java
index 6bd779d..d6edf36 100644
--- a/core/camel-util/src/main/java/org/apache/camel/util/TimeUtils.java
+++ b/core/camel-util/src/main/java/org/apache/camel/util/TimeUtils.java
@@ -147,7 +147,7 @@ public final class TimeUtils {
             }
         }
 
-        LOG.trace("source: {} milliseconds: ", source, milliseconds);
+        LOG.trace("source: [{}], milliseconds: {}", source, milliseconds);
 
         return milliseconds;
     }