Skip to content

Commit

Permalink
changed the logging status of prune messages to debug (#2254)
Browse files Browse the repository at this point in the history
  • Loading branch information
TMaYaD authored and dlstadther committed Oct 14, 2017
1 parent 701240b commit ca2b834
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions luigi/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,11 +691,11 @@ def dump(self):

@rpc_method()
def prune(self):
logger.info("Starting pruning of task graph")
logger.debug("Starting pruning of task graph")
self._prune_workers()
self._prune_tasks()
self._prune_emails()
logger.info("Done pruning task graph")
logger.debug("Done pruning task graph")

def _prune_workers(self):
remove_workers = []
Expand Down

0 comments on commit ca2b834

Please sign in to comment.