소스 검색

AI识别增加图片参数打印

zhangdongming 1 년 전
부모
커밋
e262dbcea1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Controller/AiController.py

+ 1 - 1
Controller/AiController.py

@@ -98,7 +98,7 @@ class AiView(View):
             file_post_one = request_dict.get('fileOne', None)
             file_post_two = request_dict.get('fileTwo', None)
             file_post_three = request_dict.get('fileThree', None)
-            TIME_LOGGER.info(f'图1:{file_post_one[:30]},图2:{file_post_two[:30]},图3:{file_post_three[:30]}')
+            TIME_LOGGER.info(f'uid:{uid},图1:{file_post_one[:30]},图2:{file_post_two[:30]},图3:{file_post_three[:30]}')
 
             file_list = [file_post_one, file_post_two, file_post_three]
             del file_post_one, file_post_two, file_post_three