We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 722316c + badb308 commit 17ecdffCopy full SHA for 17ecdff
arctic/_cache.py
@@ -26,7 +26,7 @@ def __init__(self, client, cache_expiry=DEFAULT_CACHE_EXPIRY, cache_db=CACHE_DB,
26
if cache_col not in self._cachedb.list_collection_names():
27
self._cachedb.create_collection(cache_col).create_index("date", expireAfterSeconds=cache_expiry)
28
except OperationFailure as op:
29
- logging.info("This is fine if you are not admin. The collection should already be created for you: %s", op)
+ logging.debug("This is fine if you are not admin. The collection should already be created for you: %s", op)
30
31
self._cachecol = self._cachedb[cache_col]
32
0 commit comments