|
@@ -1,5 +1,6 @@
|
|
|
#!/usr/bin/env python3
|
|
|
# encoding:utf-8
|
|
|
+import json
|
|
|
|
|
|
from src.core.callcenter.esl.annotation import EslEventName
|
|
|
from src.core.callcenter.esl.constant.event_names import DTMF
|
|
@@ -13,4 +14,5 @@ class DTMFHandler(EslEventHandler):
|
|
|
super().__init__(inbound_client, bot_agent)
|
|
|
|
|
|
def handle(self, address, event, coreUUID):
|
|
|
- pass
|
|
|
+ self.logger.info("DTMFHandler, event=%s", json.loads(event.serialize('json')))
|
|
|
+
|