From ef388bfa2a99d1a03ef5ccb9f2ae122d60793921 Mon Sep 17 00:00:00 2001 From: vasya Date: Sat, 11 Apr 2026 22:47:34 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B1=D0=B0=D0=B7=D0=BE=D0=B2=D1=8B=D0=B9=20?= =?UTF-8?q?=D0=BA=D0=BB=D0=B0=D1=81=D1=81=20=D0=B4=D0=BB=D1=8F=20Job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Job/BaseJob.php | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 app/Job/BaseJob.php diff --git a/app/Job/BaseJob.php b/app/Job/BaseJob.php new file mode 100644 index 0000000..323a04e --- /dev/null +++ b/app/Job/BaseJob.php @@ -0,0 +1,39 @@ + static::class, + //Скрипт, в котором произошла ошибка + 'file' => $th->getFile(), + 'line' => $th->getLine(), + ]; + \Log::channel('job_err')->error($th->getMessage(), $context); + } + +} +