Mercurial > libervia-backend
changeset 280:345844caf048
plugin xmllog: removed traces
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 01 Feb 2011 23:18:42 +0100 |
parents | 51085ed613c3 |
children | 1e3e169955b2 |
files | src/plugins/plugin_misc_xmllog.py |
diffstat | 1 files changed, 0 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/plugins/plugin_misc_xmllog.py Tue Feb 01 23:10:41 2011 +0100 +++ b/src/plugins/plugin_misc_xmllog.py Tue Feb 01 23:18:42 2011 +0100 @@ -44,12 +44,10 @@ log=obj.toXml() else: error(_('INTERNAL ERROR: Unmanaged XML type')) - info('OUT data for %s: %s' % (self._profile, log)) self._host.bridge.XmlLog("OUT", log, self._profile) return XmlStream.send(self, obj) def dataReceived(self, data): - info('IN data for %s: %s' % (self._profile, data.decode('utf-8'))) self._host.bridge.XmlLog("IN", data.decode('utf-8'), self._profile) return XmlStream.dataReceived(self, data)