You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/11/07 10:41:09 UTC

[camel] 02/02: Polished

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

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

commit d88b5b856a3d84229a5daff25792332c8b4e5366
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Nov 7 11:40:59 2022 +0100

    Polished
---
 .../main/java/org/apache/camel/main/download/DownloadThreadPool.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/download/DownloadThreadPool.java b/dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/download/DownloadThreadPool.java
index 7ff523c0a26..63797507274 100644
--- a/dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/download/DownloadThreadPool.java
+++ b/dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/download/DownloadThreadPool.java
@@ -73,7 +73,7 @@ class DownloadThreadPool extends ServiceSupport implements CamelContextAware {
         // only report at INFO if downloading took > 1s because loading from cache is faster
         // and then it is not downloaded over the internet
         long taken = watch.taken();
-        String msg = "Downloaded:  " + gav + " (took: "
+        String msg = "Downloaded: " + gav + " (took: "
                      + TimeUtils.printDuration(taken, true) + ")";
         if (taken < 1000) {
             log.debug(msg);