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/09 06:23:20 UTC

[camel] branch master updated: Fix placeholders in logging statements

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


The following commit(s) were added to refs/heads/master by this push:
     new 926009a  Fix placeholders in logging statements
926009a is described below

commit 926009a3e1a45a35ffec8144fcff565d7af42fe1
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Tue Apr 9 08:23:04 2019 +0200

    Fix placeholders in logging statements
---
 .../src/main/java/org/apache/camel/support/jsse/JsseParameters.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-api/src/main/java/org/apache/camel/support/jsse/JsseParameters.java b/core/camel-api/src/main/java/org/apache/camel/support/jsse/JsseParameters.java
index a3fb50b..1f9c3c0 100644
--- a/core/camel-api/src/main/java/org/apache/camel/support/jsse/JsseParameters.java
+++ b/core/camel-api/src/main/java/org/apache/camel/support/jsse/JsseParameters.java
@@ -162,7 +162,7 @@ public class JsseParameters implements CamelContextAware {
 
         if (is == null) {
             LOG.trace("Trying to open resource [{}] as a class path resource using the classloader [{}].",
-                      this.getClass().getClassLoader());
+                      resource, this.getClass().getClassLoader());
             is = this.getClass().getResourceAsStream(resource);
             
             if (is == null) {