|
@@ -64,7 +64,7 @@ class Cache:
|
|
|
def add_call_info(self, call: CallInfo):
|
|
|
for k, v in call.device_info_map.items():
|
|
|
self.add_device(k, call.call_id)
|
|
|
- self.logger.info('daviddebugger::add_call_info call_id:%s, call=%s'% (call.call_id, call))
|
|
|
+ print('daviddebugger::add_call_info call_id:%s, call=%s'% (call.call_id, call))
|
|
|
self.redis_handler.set(CALL_INFO + call.call_id, call.to_json_string(), self.cacheDay * 24 * 60 * 60)
|
|
|
|
|
|
|
|
@@ -79,7 +79,7 @@ class Cache:
|
|
|
text = None
|
|
|
if call_id:
|
|
|
text = self.redis_handler.get(CALL_INFO + call_id)
|
|
|
- self.logger.info('daviddebugger::get_call_info call_id:%s, text:%s'% (call_id, text))
|
|
|
+ print('daviddebugger::get_call_info call_id:%s, text:%s'% (call_id, text))
|
|
|
if text:
|
|
|
return CallInfo.from_json(text)
|
|
|
|