diff options
author | Cleber Rosa | 2019-02-02 01:55:51 +0100 |
---|---|---|
committer | Cleber Rosa | 2019-02-22 20:07:01 +0100 |
commit | 10314fb060f2bd42c3fb0f5523edb8dbb0247d00 (patch) | |
tree | 2cdeff234ace7db4504f502be1536b55bae467e3 /python | |
parent | Introduce a Python module structure (diff) | |
download | qemu-10314fb060f2bd42c3fb0f5523edb8dbb0247d00.tar.gz qemu-10314fb060f2bd42c3fb0f5523edb8dbb0247d00.tar.xz qemu-10314fb060f2bd42c3fb0f5523edb8dbb0247d00.zip |
scripts/qemu.py: log QEMU launch command line
Even when the launch of QEMU succeeds, it's useful to have the command
line recorded.
Reviewed-by: Caio Carrara <ccarrara@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Message-Id: <20190202005610.24048-2-crosa@redhat.com>
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Diffstat (limited to 'python')
-rw-r--r-- | python/qemu/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/qemu/__init__.py b/python/qemu/__init__.py index 38de3e9177..585cd2a1a3 100644 --- a/python/qemu/__init__.py +++ b/python/qemu/__init__.py @@ -321,6 +321,7 @@ class QEMUMachine(object): self._pre_launch() self._qemu_full_args = (self._wrapper + [self._binary] + self._base_args() + self._args) + LOG.debug('VM launch command: %r', ' '.join(self._qemu_full_args)) self._popen = subprocess.Popen(self._qemu_full_args, stdin=devnull, stdout=self._qemu_log_file, |