Skip to content

Commit

Permalink
Merge pull request man-group#790 from shashank88/log_debug
Browse files Browse the repository at this point in the history
Convert log to debug
  • Loading branch information
shashank88 committed Jul 2, 2019
2 parents 722316c + badb308 commit 17ecdff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arctic/_cache.py
Expand Up @@ -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]

Expand Down

0 comments on commit 17ecdff

Please sign in to comment.