diff --git a/sdk/python/feast/infra/online_stores/contrib/cassandra_online_store/cassandra_online_store.py b/sdk/python/feast/infra/online_stores/contrib/cassandra_online_store/cassandra_online_store.py index af747650e2..d0768abac3 100644 --- a/sdk/python/feast/infra/online_stores/contrib/cassandra_online_store/cassandra_online_store.py +++ b/sdk/python/feast/infra/online_stores/contrib/cassandra_online_store/cassandra_online_store.py @@ -294,6 +294,10 @@ def _get_session(self, config: RepoConfig): # creation of Cluster (Cassandra vs. Astra) if hosts: + logger.info(f"Connecting to Cassandra cluster at {hosts}.") + logger.info(f"Username: {username}.") + logger.info(f"Keyspace: {keyspace}.") + logger.info(f"Port: {port}.") self._cluster = Cluster( hosts, port=port, auth_provider=auth_provider, **cluster_kwargs )