Displaying 1 result from an estimated 1 matches for "sysimport".
2017 Aug 07
1
Avoiding console prints by Libvirt Qemu python APIs
...t, it doesn't have any effect. I have also tried playing
around with the libvirt logging settings described in
https://libvirt.org/logging.html . No effect again. "stdio_handler" flag in
/etc/libvirt/qemu.conf is set to "file" as well.
Following is my test code:
import os, sysimport libvirt
conn = libvirt.open('qemu:///system')
# Find the application in the virsh domaintry:
sys.stdout = open(os.devnull, "w")
sys.stderr = open(os.devnull, "w")
dom = conn.lookupByName('abcd')
sys.stdout = sys.__stdout__
sys.stderr = sys.__s...