# HG changeset patch # User Goffi # Date 1296775076 -3600 # Node ID 6422fcdd831c49139bda4f16057ceb3737330725 # Parent c2537142409030be29f62e750929b1543cc84a6e plugin XML Log: fixed dbus signal name diff -r c25371424090 -r 6422fcdd831c src/plugins/plugin_misc_xmllog.py --- a/src/plugins/plugin_misc_xmllog.py Fri Feb 04 00:13:41 2011 +0100 +++ b/src/plugins/plugin_misc_xmllog.py Fri Feb 04 00:17:56 2011 +0100 @@ -44,11 +44,11 @@ log=obj.toXml() else: error(_('INTERNAL ERROR: Unmanaged XML type')) - self._host.bridge.XmlLog("OUT", log, self._profile) + self._host.bridge.xmlLog("OUT", log, self._profile) return XmlStream.send(self, obj) def dataReceived(self, data): - self._host.bridge.XmlLog("IN", data.decode('utf-8'), self._profile) + self._host.bridge.xmlLog("IN", data.decode('utf-8'), self._profile) return XmlStream.dataReceived(self, data) @@ -72,7 +72,7 @@ host.memory.importParams(self.params) #bridge - host.bridge.addSignal("XmlLog", ".communication", signature='sss') #args: direction("IN" or "OUT"), xml_data, profile + host.bridge.addSignal("xmlLog", ".communication", signature='sss') #args: direction("IN" or "OUT"), xml_data, profile do_log = bool(self.host.memory.getParamA("Xml log", "Debug")) if do_log: