From 7c26dff45e48b6edfd545f057d21ed5e835b12b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Fri, 8 Jul 2022 17:43:51 +0800 Subject: [PATCH] modify plugin name --- function.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/function.php b/function.php index 9e7a764e..3cf7ef27 100644 --- a/function.php +++ b/function.php @@ -1149,7 +1149,7 @@ if (!function_exists('throwable')) { */ function throwable(\Throwable|\Error $throwable): string { - $message = "Throwable: " . $throwable->getMessage() . "\n" . ' ' . $throwable->getFile() . " at line " . $throwable->getLine() . "\n"; + $message = $throwable->getMessage() . "\n" . ' ' . $throwable->getFile() . " at line " . $throwable->getLine() . "\n"; $message .= "trance\n"; foreach ($throwable->getTrace() as $value) {