summaryrefslogtreecommitdiff
path: root/virtManager/baseclass.py
diff options
context:
space:
mode:
Diffstat (limited to 'virtManager/baseclass.py')
-rw-r--r--virtManager/baseclass.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/virtManager/baseclass.py b/virtManager/baseclass.py
index 78902e83..b2c90263 100644
--- a/virtManager/baseclass.py
+++ b/virtManager/baseclass.py
@@ -4,7 +4,6 @@
# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
-import logging
import os
import sys
import threading
@@ -16,6 +15,8 @@ from gi.repository import GLib
from gi.repository import GObject
from gi.repository import Gtk
+from virtinst import log
+
from . import config
@@ -93,7 +94,7 @@ class vmmGObject(GObject.GObject):
for h in self._gobject_timeouts[:]:
self.remove_gobject_timeout(h)
except Exception:
- logging.exception("Error cleaning up %s", self)
+ log.exception("Error cleaning up %s", self)
self.__cleaned_up = True
@@ -110,7 +111,7 @@ class vmmGObject(GObject.GObject):
if config.vmmConfig.is_initialized() and self._leak_check:
self.config.remove_object(self.object_key)
except Exception:
- logging.exception("Error removing %s", self.object_key)
+ log.exception("Error removing %s", self.object_key)
@property
def config(self):
@@ -190,7 +191,7 @@ class vmmGObject(GObject.GObject):
def _logtrace(self, msg=""):
if msg:
msg += " "
- logging.debug("%s(%s %s)\n:%s",
+ log.debug("%s(%s %s)\n:%s",
msg, self.object_key, self._refcount(),
"".join(traceback.format_stack()))
@@ -304,7 +305,7 @@ class vmmGObjectUI(vmmGObject):
self.topwin = None
self._err = None
except Exception:
- logging.exception("Error cleaning up %s", self)
+ log.exception("Error cleaning up %s", self)
self.__cleaned_up = True
@@ -335,7 +336,7 @@ class vmmGObjectUI(vmmGObject):
except Exception:
# If a cursor icon theme isn't installed this can cause errors
# https://bugzilla.redhat.com/show_bug.cgi?id=1516588
- logging.debug("Error setting cursor_type=%s",
+ log.debug("Error setting cursor_type=%s",
cursor_type, exc_info=True)
def set_finish_cursor(self):