From 06674cfa717a61d163b363c7ae66aeba43b9c29e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Sat, 20 Feb 2021 16:36:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- System/Abstracts/BaseObject.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/System/Abstracts/BaseObject.php b/System/Abstracts/BaseObject.php index cdabe75c..59109e62 100644 --- a/System/Abstracts/BaseObject.php +++ b/System/Abstracts/BaseObject.php @@ -185,9 +185,9 @@ class BaseObject implements Configure $length = strlen('[ERROR][2021-02-20 08:32:02]:'); - $message = PHP_EOL . (empty($method) ? '' : $method . ': ') . $message; + $message = (empty($method) ? '' : $method . ': ') . $message; - echo "\033[41;37m[ERROR][" . date('Y-m-d H:i:s') . ']: ' . + echo "\033[41;37m[ERROR][" . date('Y-m-d H:i:s') . ']: ' . PHP_EOL . str_pad($message, $length, ' ', STR_PAD_LEFT) . "\033[0m"; echo PHP_EOL; }