mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 14:49:24 +01:00
wfd-source: Print call trace on error
This commit is contained in:
parent
3910b9d9c3
commit
bfa670d4ef
@ -15,6 +15,7 @@ import collections
|
||||
import collections.abc
|
||||
import random
|
||||
import dataclasses
|
||||
import traceback
|
||||
|
||||
import gi
|
||||
gi.require_version('GLib', '2.0')
|
||||
@ -1139,8 +1140,13 @@ class WFDSource(Gtk.Window):
|
||||
|
||||
def on_rtsp_error(excp):
|
||||
self.disconnect_peer(dev_path, path)
|
||||
tb = ''
|
||||
try:
|
||||
tb = '\n\nDebug info: ' + traceback.format_exc()
|
||||
except:
|
||||
pass
|
||||
dialog = Gtk.MessageDialog(parent=self, message_type=Gtk.MessageType.ERROR, buttons=Gtk.ButtonsType.OK, text='Negotiation failed')
|
||||
dialog.format_secondary_text('RTSP error when talking to ' + self.objects[path][PEER_IF]['Name'] + ': ' + repr(excp))
|
||||
dialog.format_secondary_text('RTSP error when talking to ' + self.objects[path][PEER_IF]['Name'] + ': ' + repr(excp) + tb)
|
||||
dialog.show()
|
||||
|
||||
def on_ok(response, *args):
|
||||
|
Loading…
Reference in New Issue
Block a user