mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
validate: launcher: Print some ERROR log when inspecting scenario fails
This commit is contained in:
parent
61a899acf2
commit
615a372274
1 changed files with 2 additions and 1 deletions
|
@ -1925,7 +1925,8 @@ class ScenarioManager(Loggable):
|
|||
"--scenarios-defs-output-file", scenario_defs]
|
||||
command.extend(scenario_paths)
|
||||
subprocess.check_call(command, stdout=logs, stderr=logs)
|
||||
except subprocess.CalledProcessError:
|
||||
except subprocess.CalledProcessError as e:
|
||||
self.error(e)
|
||||
pass
|
||||
|
||||
config = configparser.RawConfigParser()
|
||||
|
|
Loading…
Reference in a new issue