From 5361669220d00d387af185b2ef9398bb4c0f3b17 Mon Sep 17 00:00:00 2001 From: Emilio Date: Mon, 15 Mar 2021 14:02:27 -0400 Subject: [PATCH] GEOMESA-2903 Log HBase zookeeper connection (#2720) Signed-off-by: Emilio Lahr-Vivaz --- .../locationtech/geomesa/hbase/data/HBaseConnectionPool.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/geomesa-hbase/geomesa-hbase-datastore/src/main/scala/org/locationtech/geomesa/hbase/data/HBaseConnectionPool.scala b/geomesa-hbase/geomesa-hbase-datastore/src/main/scala/org/locationtech/geomesa/hbase/data/HBaseConnectionPool.scala index 13dbb475cedb..a64d81f2d719 100644 --- a/geomesa-hbase/geomesa-hbase-datastore/src/main/scala/org/locationtech/geomesa/hbase/data/HBaseConnectionPool.scala +++ b/geomesa-hbase/geomesa-hbase-datastore/src/main/scala/org/locationtech/geomesa/hbase/data/HBaseConnectionPool.scala @@ -101,6 +101,7 @@ object HBaseConnectionPool extends LazyLogging { ProvidedConnection(ConnectionParam.lookup(params)) } else { val conf = getConfiguration(params) + logger.debug(s"Connecting to HBase instance at ${conf.get(HConstants.ZOOKEEPER_QUORUM)}") if (HBaseDataStoreParams.CacheConnectionsParam.lookup(params)) { connections.get((conf, validate)) } else {