Skip to content

Commit

Permalink
Merge pull request #938 from Tarrasch/dont-scare-users
Browse files Browse the repository at this point in the history
CascadingClient: Avoid scary stack trace
  • Loading branch information
Tarrasch committed May 11, 2015
2 parents 6d8a0ce + f758b03 commit 4ee07e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions luigi/contrib/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ def _chained_call(self, method_name, *args, **kwargs):
if is_last_iteration:
raise
else:
logger.exception('The %s failed to %s, using fallback class %s',
client.__class__.__name__, method_name, self.clients[i + 1].__class__.__name__)
logger.warning('The %s failed to %s, using fallback class %s',
client.__class__.__name__, method_name, self.clients[i + 1].__class__.__name__)

0 comments on commit 4ee07e6

Please sign in to comment.