diff mbox

[KVM-AUTOTEST,19/26] KVM test: log qemu command and qemu output as INFO rather than DEBUG

Message ID 1294751618-21631-19-git-send-email-mgoldish@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Michael Goldish Jan. 11, 2011, 1:13 p.m. UTC
None
diff mbox

Patch

diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py
index c9f779f..1fcb352 100755
--- a/client/tests/kvm/kvm_vm.py
+++ b/client/tests/kvm/kvm_vm.py
@@ -833,9 +833,9 @@  class VM:
                 qemu_command += (' -incoming "exec:nc -l %s"' %
                                  self.migration_port)
 
-            logging.debug("Running qemu command:\n%s", qemu_command)
+            logging.info("Running qemu command:\n%s", qemu_command)
             self.process = kvm_subprocess.run_bg(qemu_command, None,
-                                                 logging.debug, "(qemu) ")
+                                                 logging.info, "(qemu) ")
 
             # Make sure the process was started successfully
             if not self.process.is_alive():