Davidliu 2 months ago
parent
commit
707cfcba4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/callcenter/data_handler.py

+ 1 - 1
src/core/callcenter/data_handler.py

@@ -56,7 +56,7 @@ class DataHandleServer:
         for key, value in kwargs.items():
             if hasattr(call_record, key):
                 setattr(call_record, key, value)
-        self.app.logger.info(f"更新通话记录: {kwargs}")
+        self.app.logger.info(f"更新通话记录: {kwargs}, {call_record.to_dict()}")
         db.session.commit()
 
     @with_app_context