From d9fe013b3e224a00db2f969c017ac4810ea53c43 Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 18 Feb 2020 17:30:55 +0200 Subject: [PATCH] Changed 'execute' function's quiet log level from info to debug (#21) --- manof/utils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manof/utils/__init__.py b/manof/utils/__init__.py index 188fceb..e1fb5da 100644 --- a/manof/utils/__init__.py +++ b/manof/utils/__init__.py @@ -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)