summaryrefslogtreecommitdiff
path: root/dbus/bus.py
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/bus.py')
-rw-r--r--dbus/bus.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/bus.py b/dbus/bus.py
index d981726..cbcb6ef 100644
--- a/dbus/bus.py
+++ b/dbus/bus.py
@@ -33,6 +33,7 @@ from _dbus_bindings import validate_interface_name, validate_member_name,\
HANDLER_RESULT_NOT_YET_HANDLED
from dbus.connection import Connection
+
_NAME_OWNER_CHANGE_MATCH = ("type='signal',sender='%s',"
"interface='%s',member='NameOwnerChanged',"
"path='%s',arg0='%%s'"
@@ -41,8 +42,7 @@ _NAME_OWNER_CHANGE_MATCH = ("type='signal',sender='%s',"
"""(_NAME_OWNER_CHANGE_MATCH % sender) matches relevant NameOwnerChange
messages"""
-
-_logger = logging.getLogger('dbus.connection')
+_logger = logging.getLogger('dbus.bus')
class BusConnection(Connection):