aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/toolkit.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-24 20:58:22 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-24 21:04:56 +0300
commitd56373569ba602fee6d2605c72d3e480c1ba0026 (patch)
treef309a0ac9227097453926bfe36cd7d44b94da8c8 /test/toolkit.py
parentadd CTest tests (diff)
downloadaes-tools-d56373569ba602fee6d2605c72d3e480c1ba0026.tar.gz
aes-tools-d56373569ba602fee6d2605c72d3e480c1ba0026.zip
test: log to stdout
Diffstat (limited to '')
-rw-r--r--test/toolkit.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/toolkit.py b/test/toolkit.py
index 4abdbf4..103dc9d 100644
--- a/test/toolkit.py
+++ b/test/toolkit.py
@@ -85,14 +85,14 @@ class Tools:
def run(self, tool_path, args):
cmd_list = ['sde', '--', tool_path] if self._use_sde else [tool_path]
cmd_list.extend(args)
- logging.info('Trying to execute: %s', subprocess.list2cmdline(cmd_list))
+ logging.debug('Trying to execute: %s', subprocess.list2cmdline(cmd_list))
try:
output = subprocess.check_output(
cmd_list, universal_newlines=True, stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
logging.error('Output:\n%s', e.output)
raise
- logging.info('Output:\n%s', output)
+ logging.debug('Output:\n%s', output)
return output.split()
@staticmethod