This is an automated email from the ASF dual-hosted git repository.
davsclaus 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 0f75401 Fixed logging null as properties location in camel-main
0f75401 is described below
commit 0f754015b4d98feae8e5613a8412fb348e07a827
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri May 8 14:22:46 2020 +0200
Fixed logging null as properties location in camel-main
---
.../camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
b/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
index 040932c..f25b734 100644
--- a/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
+++ b/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
@@ -456,7 +456,7 @@ public abstract class BaseMainSupport extends BaseService {
}
if (!Objects.equals(locations, "false")) {
pc.addLocation(locations);
- LOG.info("Using properties from: {}",
propertyPlaceholderLocations);
+ LOG.info("Using properties from: {}", locations);
}
}