log stderr as info

This commit is contained in:
iLLiCiTiT 2021-11-25 13:13:41 +01:00
parent d82d400f1b
commit 0544147c6f

View file

@ -124,7 +124,7 @@ def run_subprocess(*args, **kwargs):
if full_output:
full_output += "\n"
full_output += _stderr
logger.warning(_stderr)
logger.info(_stderr)
if proc.returncode != 0:
exc_msg = "Executing arguments was not successful: \"{}\"".format(args)