Skip to content

Commit

Permalink
Convert log to debug
Browse files Browse the repository at this point in the history
This log can be quite spammy as people generally do not not have
listCollections on this db.
  • Loading branch information
shashank88 committed Jul 2, 2019
1 parent 722316c commit badb308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arctic/_cache.py
Original file line number Diff line number Diff line change
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 badb308

Please sign in to comment.