|
@@ -31,13 +31,13 @@ class ChannelHangupHandler(EslEventHandler):
|
|
|
self.logger.info(json.loads(event.serialize('json')))
|
|
|
try:
|
|
|
call_id = EslEventUtil.getCallId(event)
|
|
|
- self.logger.info('debugger::call_id is ', call_id)
|
|
|
+ self.logger.info('debugger::call_id is %s', call_id)
|
|
|
if not call_id:
|
|
|
self.release(event)
|
|
|
self.logger.info("call_id is null")
|
|
|
return
|
|
|
call = self.cache.get_call_info(call_id)
|
|
|
- self.logger.info('debugger::call_info is ', call)
|
|
|
+ self.logger.info('debugger::call_info is %s', call)
|
|
|
if not call:
|
|
|
self.logger.info("call:%s is null", call_id)
|
|
|
return
|