Skip to content

Commit 17ecdff

Browse files
authored
Merge pull request pandas-dev#790 from shashank88/log_debug
Convert log to debug
2 parents 722316c + badb308 commit 17ecdff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arctic/_cache.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __init__(self, client, cache_expiry=DEFAULT_CACHE_EXPIRY, cache_db=CACHE_DB,
2626
if cache_col not in self._cachedb.list_collection_names():
2727
self._cachedb.create_collection(cache_col).create_index("date", expireAfterSeconds=cache_expiry)
2828
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)
29+
logging.debug("This is fine if you are not admin. The collection should already be created for you: %s", op)
3030

3131
self._cachecol = self._cachedb[cache_col]
3232

0 commit comments

Comments
 (0)