From 94851c3f510b7efb3fce585386c54de7c9f2d52d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Wed, 12 Jan 2022 18:22:53 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"=E6=94=B9=E5=90=8D"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit fdf58326 --- function.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/function.php b/function.php index f883b030..c06330a5 100644 --- a/function.php +++ b/function.php @@ -1249,8 +1249,8 @@ Throwable: ' . $throwable->getMessage() . "\t\n" . ' ' . $throwable->getFile() . if (!isset($value['file'])) { continue; } - $message .= "\t" . ' - ' . $value['file'] . '->' . $value['line'] . '(' . ($value['class'] ?? 'static') . '::' . ($value['function'] ?? 'function') . ')' . "\t"; + $message .= ' + ' . $value['file'] . "\t" . $value['line'] . "\t" . ($value['class'] ?? 'static') . '::' . ($value['function'] ?? 'function') . "\t"; } return "\033[41;37m" . $message . "\033[0m"; }