modify plugin name

This commit is contained in:
2022-07-08 17:43:51 +08:00
parent d2dd255c90
commit 7c26dff45e
+1 -1
View File
@@ -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) {