Skip to content

Commit d9fe013

Browse files
authored
Changed 'execute' function's quiet log level from info to debug (#21)
1 parent 3be9a39 commit d9fe013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manof/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def _get_error(failure):
186186
out = out.strip()
187187
if code:
188188
if quiet and logger:
189-
logger.info('Command failed quietly', command=command, cwd=cwd, code_or_signal=code, err=err, out=out)
189+
logger.debug('Command failed quietly', command=command, cwd=cwd, code_or_signal=code, err=err, out=out)
190190
else:
191191
if logger:
192192
logger.warn('Command failed', command=command, cwd=cwd, code_or_signal=code, err=err, out=out)

0 commit comments

Comments
 (0)