Skip to content

Commit

Permalink
Changed 'execute' function's quiet log level from info to debug (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
quaark authored Feb 18, 2020
1 parent 3be9a39 commit d9fe013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manof/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def _get_error(failure):
out = out.strip()
if code:
if quiet and logger:
logger.info('Command failed quietly', command=command, cwd=cwd, code_or_signal=code, err=err, out=out)
logger.debug('Command failed quietly', command=command, cwd=cwd, code_or_signal=code, err=err, out=out)
else:
if logger:
logger.warn('Command failed', command=command, cwd=cwd, code_or_signal=code, err=err, out=out)
Expand Down

0 comments on commit d9fe013

Please sign in to comment.