Skip to content
Snippets Groups Projects
Commit 02fc0a86 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

print more dbus errors in verbose mode only

parent 8e4d7996
No related branches found
No related tags found
No related merge requests found
......@@ -57,10 +57,10 @@ def notify(event_type, jid, account, msg_type = '', file_props = None):
return
except dbus.dbus_bindings.DBusException, e:
# Connection to DBus failed, try popup
print >> sys.stderr, e
gajim.log.debug(str(e))
except TypeError, e:
# This means that we sent the message incorrectly
print >> sys.stderr, e
gajim.log.debug(str(e))
instance = dialogs.PopupNotificationWindow(event_type, jid, account,
msg_type, file_props)
gajim.interface.roster.popup_notification_windows.append(instance)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment