From e8e3327bd1c85bd49396c9db4157d75f90e8ea4a Mon Sep 17 00:00:00 2001 From: weizong song Date: Sun, 11 Apr 2021 15:15:25 +0800 Subject: [PATCH] up --- app/Libs/AlipayF2F.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Libs/AlipayF2F.class.php b/app/Libs/AlipayF2F.class.php index c08fcff..4a18158 100644 --- a/app/Libs/AlipayF2F.class.php +++ b/app/Libs/AlipayF2F.class.php @@ -20,11 +20,12 @@ class AlipayF2F $responseChecker = new ResponseChecker(); //处理响应或异常 if ($responseChecker->success($result)) { - Log::info($result->msg . "," . $result->subMsg); + Log::info("成功:" . $result->msg . "," . $result->subMsg); return [ "status" => true ]; } else { + Log::info("失败:" . $result->msg); return [ "status" => false, "code" => $result->code,