|
@@ -1205,7 +1205,7 @@ class testView(View):
|
|
|
@staticmethod
|
|
|
def generic_report_push(request_dict, response):
|
|
|
try:
|
|
|
- logging.info('设备上传数据:{}'.format(request_dict))
|
|
|
+ LOGGER.info('设备上传数据:{}'.format(request_dict))
|
|
|
return response.json(0)
|
|
|
except Exception as e:
|
|
|
return response.json(500, 'error_line:{}, error_msg:{}'.format(e.__traceback__.tb_lineno, repr(e)))
|