You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2013/08/15 11:21:31 UTC

git commit: Polished.

Updated Branches:
  refs/heads/master f3b4ffd82 -> 5be16341d


Polished.

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

Branch: refs/heads/master
Commit: 5be16341dad2a9a21ce7adad607671d03a1a0533
Parents: f3b4ffd
Author: Babak Vahdat <bv...@apache.org>
Authored: Thu Aug 15 11:21:26 2013 +0200
Committer: Babak Vahdat <bv...@apache.org>
Committed: Thu Aug 15 11:21:26 2013 +0200

----------------------------------------------------------------------
 .../java/org/apache/camel/component/vertx/VertxProducer.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/5be16341/components/camel-vertx/src/main/java/org/apache/camel/component/vertx/VertxProducer.java
----------------------------------------------------------------------
diff --git a/components/camel-vertx/src/main/java/org/apache/camel/component/vertx/VertxProducer.java b/components/camel-vertx/src/main/java/org/apache/camel/component/vertx/VertxProducer.java
index 1597dd7..b25a448 100644
--- a/components/camel-vertx/src/main/java/org/apache/camel/component/vertx/VertxProducer.java
+++ b/components/camel-vertx/src/main/java/org/apache/camel/component/vertx/VertxProducer.java
@@ -47,13 +47,13 @@ public class VertxProducer extends DefaultProducer {
 
         JsonObject jsonObject = in.getBody(JsonObject.class);
         if (jsonObject != null) {
-            LOG.debug("Publishing to: with JsonObject: {}", address, jsonObject);
+            LOG.debug("Publishing to: {} with JsonObject: {}", address, jsonObject);
             eventBus.publish(address, jsonObject);
             return;
         }
         JsonArray jsonArray = in.getBody(JsonArray.class);
         if (jsonArray != null) {
-            LOG.debug("Publishing to: with JsonArray: {}", address, jsonArray);
+            LOG.debug("Publishing to: {} with JsonArray: {}", address, jsonArray);
             eventBus.publish(address, jsonArray);
             return;
         }
@@ -61,7 +61,7 @@ public class VertxProducer extends DefaultProducer {
         // and fallback and use string which almost all can be converted
         String text = in.getBody(String.class);
         if (text != null) {
-            LOG.debug("Publishing to: with String: {}", address, text);
+            LOG.debug("Publishing to: {} with String: {}", address, text);
             eventBus.publish(address, new JsonObject(text));
             return;
         }