From c169050a0ec390bf7a26dc08ef649b534620616f Mon Sep 17 00:00:00 2001 From: zhouchengrong Date: Mon, 20 May 2024 11:32:07 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E7=B1=BB=E5=88=AB=E6=98=A0=E5=B0=84?= =?UTF-8?q?=E8=A1=A8=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/api_outfit_matcher.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/api_outfit_matcher.py b/app/api/api_outfit_matcher.py index c9cfaf9..bb04d18 100644 --- a/app/api/api_outfit_matcher.py +++ b/app/api/api_outfit_matcher.py @@ -89,6 +89,7 @@ def outfit_matcher(request_item: OutfitMatcher): ) result.append({"outfits": bad_outfits, "scores": bad_scores}) logger.info(f"run time is : {time.time() - start_time}") + logger.info({"code": 200, "message": "ok", "data": result}) return {"code": 200, "message": "ok", "data": result} # except Exception as e: # logger.warning(e)