virt-manager/virt-manager-0.7.0-log-capabilities-at-startup.patch
Mark McLoughlin 14a09e350e - Fix 'opertaing' typo in 'New VM' dialog (#495128)
- Allow details window to resize again (#491683)
- Handle collecting username for vnc authentication (#499589)
- Actually handle arch config when creating a VM (#499145)
- Log libvirt capabilities at startup to aid debugging (#500337)
2009-05-21 14:56:09 +00:00

20 lines
794 B
Diff

# HG changeset patch
# User Cole Robinson <crobinso@redhat.com>
# Date 1242141157 14400
# Node ID 48b62193630869193e8193f85ffe87ea4842de79
# Parent 4736f0f543369ae41d6caa1188e8c71d0f6e326a
Log capabilities XML at connection startup.
diff -r 4736f0f54336 -r 48b621936308 src/virtManager/connection.py
--- a/src/virtManager/connection.py Tue May 12 10:35:43 2009 -0400
+++ b/src/virtManager/connection.py Tue May 12 11:12:37 2009 -0400
@@ -633,6 +633,8 @@ class vmmConnection(gobject.GObject):
gtk.gdk.threads_enter()
try:
if self.state == self.STATE_ACTIVE:
+ logging.debug("%s capabilities:\n%s" %
+ (self.get_uri(), self.vmm.getCapabilities()))
self.tick()
self.emit("state-changed")