Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #569 from mozilla/update_prune_indexes
Browse files Browse the repository at this point in the history
Modify logger output for prune indexes
  • Loading branch information
Phrozyn authored Dec 19, 2017
2 parents 88efd45 + f7364b0 commit d5652b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cron/pruneIndexes.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def esPruneIndexes():
index_to_prune += '-%s' % idate

if index_to_prune in indices:
logger.info('Deleting index: %s' % index_to_prune)
logger.debug('Deleting index: %s' % index_to_prune)
es.delete_index(index_to_prune, True)
else:
logger.error('Error deleting index %s, index missing' % index_to_prune)
Expand Down

0 comments on commit d5652b8

Please sign in to comment.