Skip to content

Commit

Permalink
Updating version_store.py to fix issue pandas-dev#423
Browse files Browse the repository at this point in the history
  • Loading branch information
jonbannister authored and bmoscon committed Sep 25, 2017
1 parent 1661fa5 commit 7bd2ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arctic/store/version_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ def delete(self, symbol):
symbol : `str`
symbol name to delete
"""
logger.warning("Deleting data item: %r from %r" % (symbol, self._arctic_lib.get_name()))
logger.info("Deleting data item: %r from %r" % (symbol, self._arctic_lib.get_name()))
# None is the magic sentinel value that indicates an item has been deleted.
sentinel = self.write(symbol, None, prune_previous_version=False, metadata={'deleted': True})
self._prune_previous_versions(symbol, 0)
Expand Down

0 comments on commit 7bd2ef0

Please sign in to comment.