Skip to content

Commit 37b7355

Browse files
committed
chore(es_vector_store): update elasticsearch client initialization log
1 parent 2a921a3 commit 37b7355

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flowllm/core/vector_store/es_vector_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def init_client(self):
5959
self.hosts = [self.hosts]
6060
self._client = Elasticsearch(hosts=self.hosts, basic_auth=self.basic_auth)
6161
self._async_client = AsyncElasticsearch(hosts=self.hosts, basic_auth=self.basic_auth)
62-
logger.info(f"Elasticsearch client initialized with hosts: {self.hosts}")
62+
logger.info(f"Elasticsearch client initialized with hosts={self.hosts} basic_auth={self.basic_auth}")
6363
return self
6464

6565
def exist_workspace(self, workspace_id: str, **kwargs) -> bool:

0 commit comments

Comments
 (0)