=== modified file 'mandos' --- mandos 2010-08-23 19:23:15 +0000 +++ mandos 2010-08-24 18:18:01 +0000 @@ -83,7 +83,7 @@ version = "1.0.14" -logger = logging.Logger(u'mandos') +logger = logging.getLogger(u'mandos') syslogger = (logging.handlers.SysLogHandler (facility = logging.handlers.SysLogHandler.LOG_DAEMON, address = "/dev/log")) === modified file 'mandos-monitor' --- mandos-monitor 2009-12-25 23:13:47 +0000 +++ mandos-monitor 2010-08-24 18:18:01 +0000 @@ -23,11 +23,14 @@ locale.setlocale(locale.LC_ALL, u'') +import logging +logging.getLogger('dbus.proxies').setLevel(logging.CRITICAL) + # Some useful constants domain = 'se.bsnet.fukt' server_interface = domain + '.Mandos' client_interface = domain + '.Mandos.Client' -version = "1.0.14" +version = "1.0.15" # Always run in monochrome mode urwid.curses_display.curses.has_colors = lambda : False @@ -50,7 +53,7 @@ self.property_changed, client_interface, byte_arrays=True) - + self.properties.update( self.proxy.GetAll(client_interface, dbus_interface = dbus.PROPERTIES_IFACE))