From d960f518be5b06376eac1491cb163845e111c17b Mon Sep 17 00:00:00 2001 From: "as2252258@163.com" Date: Sun, 25 Sep 2022 17:16:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- function.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/function.php b/function.php index b22a214b..5c18de59 100644 --- a/function.php +++ b/function.php @@ -1161,7 +1161,7 @@ if (!function_exists('throwable')) { */ function throwable(\Throwable|\Error $throwable): string { - $message = $throwable->getMessage() . ' ' . $throwable->getFile() . " at line " . $throwable->getLine() . PHP_EOL; + $message = $throwable->getMessage() . PHP_EOL . $throwable->getFile() . " at line " . $throwable->getLine() . PHP_EOL; foreach ($throwable->getTrace() as $value) { if (!isset($value['file'])) { continue;