You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/08/13 10:24:09 UTC

[camel-kafka-connector] branch master updated: Added missing fromUrl to the log message

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


The following commit(s) were added to refs/heads/master by this push:
     new 354277c  Added missing fromUrl to the log message
     new 95dc55d  Merge pull request #372 from orpiske/fix-missing-from-url
354277c is described below

commit 354277c3585dda19047c3f7ab7d73e628fcac31c
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Thu Aug 13 11:20:46 2020 +0200

    Added missing fromUrl to the log message
---
 .../java/org/apache/camel/kafkaconnector/utils/CamelMainSupport.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/camel/kafkaconnector/utils/CamelMainSupport.java b/core/src/main/java/org/apache/camel/kafkaconnector/utils/CamelMainSupport.java
index b520f58..51dad11 100644
--- a/core/src/main/java/org/apache/camel/kafkaconnector/utils/CamelMainSupport.java
+++ b/core/src/main/java/org/apache/camel/kafkaconnector/utils/CamelMainSupport.java
@@ -99,7 +99,7 @@ public class CamelMainSupport {
                 RouteDefinition rd = from(fromUrl);
 
                 //dataformats
-                LOG.info("Creating Camel route from({})");
+                LOG.info("Creating Camel route from({})", fromUrl);
                 for (CamelKafkaConnectDataformat dataformat : dataformats) {
                     String dataformatId = dataformat.getDataformatId();
                     switch (dataformat.getDataformatKind()) {