[PATCH 14/35] abrt-python: add debugging message for dbus calls

Richard Marko rmarko at redhat.com
Mon May 13 11:05:23 UTC 2013


Signed-off-by: Richard Marko <rmarko at redhat.com>
---
 src/python-problem/problem/proxies.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/python-problem/problem/proxies.py b/src/python-problem/problem/proxies.py
index 92281bb..e3dea9c 100644
--- a/src/python-problem/problem/proxies.py
+++ b/src/python-problem/problem/proxies.py
@@ -42,6 +42,7 @@ class DBusProxy(object):
 
     def _dbus_call(self, fun_name, *args):
         try:
+            logging.debug('Calling {0} with {1}'.format(fun_name, args))
             return getattr(self._iface, fun_name)(*args)
         except self.dbus.exceptions.DBusException as e:
             dbname = e.get_dbus_name()
-- 
1.8.1.4



More information about the Crash-catcher mailing list