We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35c2277 commit a9b014bCopy full SHA for a9b014b
redisvl/index/index.py
@@ -289,7 +289,7 @@ def __init__(
289
def disconnect(self):
290
"""Disconnect from the Redis database."""
291
if self._owns_redis_client is False:
292
- print("Index does not own client, not disconnecting")
+ logger.info("Index does not own client, not disconnecting")
293
return
294
if self.__redis_client:
295
self.__redis_client.close()
redisvl/utils/utils.py
@@ -155,7 +155,6 @@ def decorator(func):
155
156
@wraps(func)
157
def wrapper(*args, **kwargs):
158
- print("???")
159
warn(warning_message, category=DeprecationWarning, stacklevel=3)
160
return func(*args, **kwargs)
161
0 commit comments