You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/09/25 08:18:50 UTC

[camel-k-runtime] 02/05: Removed the value from log as Luca suggested

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 361370de2449fca9db182251fa6216cb97b566c2
Author: Willem Jiang <wi...@gmail.com>
AuthorDate: Sun Sep 8 09:20:34 2019 +0800

    Removed the value from log as Luca suggested
---
 .../apache/camel/k/loader/groovy/dsl/ComponentConfiguration.groovy    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/camel-k-loader-groovy/src/main/groovy/org/apache/camel/k/loader/groovy/dsl/ComponentConfiguration.groovy b/camel-k-loader-groovy/src/main/groovy/org/apache/camel/k/loader/groovy/dsl/ComponentConfiguration.groovy
index 8799d8b..63b4fbf 100644
--- a/camel-k-loader-groovy/src/main/groovy/org/apache/camel/k/loader/groovy/dsl/ComponentConfiguration.groovy
+++ b/camel-k-loader-groovy/src/main/groovy/org/apache/camel/k/loader/groovy/dsl/ComponentConfiguration.groovy
@@ -52,14 +52,14 @@ class ComponentConfiguration {
         }
 
         if (!PropertyBindingSupport.build().withCamelContext(component.camelContext).withTarget(component).withProperty(name, value).bind()) {
-            LOG.error("Cannot set the component {} property {} with {}", component.class.getName(), name, value)
+            LOG.error("Cannot set the component {} property {}", component.class.getName(), name)
             throw new MissingMethodException(name, this.component.class, args as Object[])
         }
     }
 
     def propertyMissing(String name, value) {
         if (!PropertyBindingSupport.build().withCamelContext(component.camelContext).withTarget(component).withProperty(name, value).bind()) {
-            LOG.error("Cannot set the component {} property {} with {}", component.class.getName(), name, value)
+            LOG.error("Cannot set the component {} property {}", component.class.getName(), name)
             throw new MissingPropertyException(name, this.component.class)
         }
     }