From 484f2b9826b9e5888429d4fa284c2b7a69605ca7 Mon Sep 17 00:00:00 2001 From: haomingming Date: Fri, 26 Dec 2025 13:12:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E9=80=812?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/PatientOrderService.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/Services/PatientOrderService.php b/app/Services/PatientOrderService.php index 12f2fdc..5d2189d 100644 --- a/app/Services/PatientOrderService.php +++ b/app/Services/PatientOrderService.php @@ -2028,6 +2028,12 @@ class PatientOrderService extends BaseService return success($order_prescription); } catch (\Throwable $e) { + Log::getInstance("PatientOrderService-getPatientPrescriptionOrderList")->error("获取处方订单列表异常", [ + 'message' => $e->getMessage(), + 'file' => $e->getFile(), + 'line' => $e->getLine(), + 'trace' => $e->getTraceAsString(), + ]); return fail(HttpEnumCode::SERVER_ERROR, "获取处方订单列表失败"); } }