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 2017/01/10 13:25:21 UTC

camel git commit: Fixed typo in log statement

Repository: camel
Updated Branches:
  refs/heads/master 6b950b1ae -> 6593cb72e


Fixed typo in log statement


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/6593cb72
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/6593cb72
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/6593cb72

Branch: refs/heads/master
Commit: 6593cb72edcfd944add700a6abc8af652e10a681
Parents: 6b950b1
Author: Andrea Cosentino <an...@gmail.com>
Authored: Tue Jan 10 14:11:13 2017 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Tue Jan 10 14:25:03 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/camel/component/influxdb/InfluxDbEndpoint.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/6593cb72/components/camel-influxdb/src/main/java/org/apache/camel/component/influxdb/InfluxDbEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-influxdb/src/main/java/org/apache/camel/component/influxdb/InfluxDbEndpoint.java b/components/camel-influxdb/src/main/java/org/apache/camel/component/influxdb/InfluxDbEndpoint.java
index c449ef3..a1405b1 100644
--- a/components/camel-influxdb/src/main/java/org/apache/camel/component/influxdb/InfluxDbEndpoint.java
+++ b/components/camel-influxdb/src/main/java/org/apache/camel/component/influxdb/InfluxDbEndpoint.java
@@ -57,7 +57,7 @@ public class InfluxDbEndpoint extends DefaultEndpoint {
 
         this.influxDB = dbConn;
 
-        LOG.debug("Prepairing influxdb enpoint with uri {}", uri);
+        LOG.debug("Preparing influxdb enpoint with uri {}", uri);
         LOG.debug("Creating influx db producer connectionBean:{}, databaseName:{}, retentionPolicy:{}", connectionBean, databaseName, retentionPolicy);
     }