From badb3088f50e0640e8523a4a8d0c95fc2dc7f4d5 Mon Sep 17 00:00:00 2001 From: Shashank Khare Date: Tue, 2 Jul 2019 13:54:49 +0100 Subject: [PATCH] Convert log to debug This log can be quite spammy as people generally do not not have listCollections on this db. --- arctic/_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]