|
@@ -434,8 +434,8 @@ class InboundClient:
|
|
|
_con = ESL.ESLconnection(self.host, self.port, self.password)
|
|
|
if _con.connected():
|
|
|
print('debugger::bridge_break, arg=%s'%arg, flush=True)
|
|
|
- _con.api(TRANSFER, arg)
|
|
|
- print('debugger::bridge_break success, arg=%s'%arg, flush=True)
|
|
|
+ e = _con.api(TRANSFER, arg)
|
|
|
+ print('debugger::bridge_break success, arg=%s, event=%s' % (arg, e.serialize('json')), flush=True)
|
|
|
except:
|
|
|
traceback.print_exc()
|
|
|
finally:
|
|
@@ -479,8 +479,8 @@ class InboundClient:
|
|
|
_con = ESL.ESLconnection(self.host, self.port, self.password)
|
|
|
if _con.connected():
|
|
|
print('debugger::hold_play, arg=%s' % arg, flush=True)
|
|
|
- _con.bgapi(UUID_BROADCAST, arg)
|
|
|
- print('debugger::hold_play success, arg=%s' % arg, flush=True)
|
|
|
+ e = _con.api(UUID_BROADCAST, arg)
|
|
|
+ print('debugger::hold_play success, arg=%s, event=%s' % (arg, e.serialize('json')), flush=True)
|
|
|
except:
|
|
|
traceback.print_exc()
|
|
|
finally:
|