- 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)
20 lines
794 B
Diff
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")
|
|
|