diff --git a/arctic/_cache.py b/arctic/_cache.py index 52b17712b..932877143 100644 --- a/arctic/_cache.py +++ b/arctic/_cache.py @@ -26,7 +26,7 @@ def __init__(self, client, cache_expiry=DEFAULT_CACHE_EXPIRY, cache_db=CACHE_DB, if cache_col not in self._cachedb.list_collection_names(): self._cachedb.create_collection(cache_col).create_index("date", expireAfterSeconds=cache_expiry) except OperationFailure as op: - 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) self._cachecol = self._cachedb[cache_col]