You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2015/09/30 00:07:20 UTC

[16/21] incubator-tinkerpop git commit: Fix logging message.

Fix logging message.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/97fe4c47
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/97fe4c47
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/97fe4c47

Branch: refs/heads/thread-issue-tinkergraph
Commit: 97fe4c4759b196a10d05d5d85544c4174196eef7
Parents: 68f4bbc
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Sep 29 14:46:14 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Tue Sep 29 14:46:14 2015 -0400

----------------------------------------------------------------------
 .../java/org/apache/tinkerpop/gremlin/driver/ConnectionPool.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/97fe4c47/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/ConnectionPool.java
----------------------------------------------------------------------
diff --git a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/ConnectionPool.java b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/ConnectionPool.java
index 4c007ec..16a9796 100644
--- a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/ConnectionPool.java
+++ b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/ConnectionPool.java
@@ -368,7 +368,7 @@ final class ConnectionPool {
             }
 
             remaining = to - TimeUtil.timeSince(start, unit);
-            logger.debug("Continue to wait for connection on {} if {} > 0", remaining);
+            logger.debug("Continue to wait for connection on {} if {} > 0", host, remaining);
         } while (remaining > 0);
 
         logger.debug("Timed-out waiting for connection on {} - possibly unavailable", host);