变更
This commit is contained in:
+24
-1
@@ -1156,13 +1156,36 @@ if (!function_exists('error')) {
|
||||
* @param mixed $message
|
||||
* @param array $method
|
||||
* @return void
|
||||
* @throws ReflectionException
|
||||
*/
|
||||
function error(mixed $message, array $method = []): void
|
||||
{
|
||||
if ($message instanceof Throwable) {
|
||||
$message = throwable($message);
|
||||
}
|
||||
Kiri::getLogger()->error($message, $method);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (!function_exists('addError')) {
|
||||
|
||||
/**
|
||||
* @param mixed $message
|
||||
* @param string $method
|
||||
* @return bool
|
||||
* @throws ReflectionException
|
||||
*/
|
||||
function addError(mixed $message, string $method = 'app'): bool
|
||||
{
|
||||
$logger = Kiri::getLogger();
|
||||
if ($message instanceof Throwable) {
|
||||
$logger->error($message, [$message]);
|
||||
}
|
||||
return $logger->addError($message, $method);
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('success')) {
|
||||
|
||||
/**
|
||||
@@ -1186,7 +1209,7 @@ if (!function_exists('throwable')) {
|
||||
*/
|
||||
function throwable(\Throwable|\Error $throwable): string
|
||||
{
|
||||
$message = "\033[31mError: " . $throwable->getMessage() . "\033[0m" . PHP_EOL .
|
||||
$message = "\033[31m" . $throwable->getMessage() . "\033[0m" . PHP_EOL .
|
||||
' ' . $throwable->getFile() . " at line " . $throwable->getLine() . PHP_EOL;
|
||||
foreach ($throwable->getTrace() as $value) {
|
||||
if (!isset($value['file'])) {
|
||||
|
||||
@@ -207,7 +207,7 @@ abstract class Actor implements ActorInterface, JsonSerializable
|
||||
try {
|
||||
$this->onUpdate();
|
||||
} catch (\Throwable $exception) {
|
||||
\Kiri::getLogger()->error(throwable($exception));
|
||||
error($exception);
|
||||
}
|
||||
|
||||
Coroutine::sleep($this->refreshInterval / 1000);
|
||||
|
||||
@@ -135,7 +135,7 @@ class Logger implements LoggerInterface
|
||||
// TODO: Implement log() method.
|
||||
$levels = Config::get('log.level', Logger::LOGGER_LEVELS);
|
||||
if (in_array($level, $levels)) {
|
||||
$_string = '[' . now() . ']' . ucfirst($level) . ': ' . $message . PHP_EOL;
|
||||
$_string = "[" . now() . ']' . ucfirst($level) . ': ' . $message . PHP_EOL;
|
||||
if (!empty($context)) {
|
||||
$_string .= $this->_string($context);
|
||||
}
|
||||
@@ -189,11 +189,14 @@ class Logger implements LoggerInterface
|
||||
private function _string($context): string
|
||||
{
|
||||
if ($context instanceof \Throwable) {
|
||||
$context = ['file' => $context->getFile(), 'line' => $context->getLine()];
|
||||
$context = 'file -> ' . $context->getFile() . PHP_EOL . 'line -> ' . $context->getLine() . PHP_EOL;
|
||||
}
|
||||
if (is_array($context) && isset($context[0]) && $context[0] instanceof \Throwable) {
|
||||
$context = ['file' => $context[0]->getFile(), 'line' => $context[0]->getLine()];
|
||||
$context = 'file -> ' . $context[0]->getFile() . PHP_EOL . 'line -> ' . $context[0]->getLine() . PHP_EOL;
|
||||
}
|
||||
return print_r($context, true) . PHP_EOL;
|
||||
if (is_string($context)) {
|
||||
return $context . PHP_EOL;
|
||||
}
|
||||
return implode(PHP_EOL, $context) . PHP_EOL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,7 +23,6 @@ class StdoutLogger extends Logger
|
||||
*/
|
||||
public function addError($message, string $model = 'app'): bool
|
||||
{
|
||||
$this->error($model, [$message]);
|
||||
if ($message instanceof \Exception) {
|
||||
$this->errors[$model] = $message->getMessage();
|
||||
} else {
|
||||
|
||||
@@ -172,7 +172,7 @@ class Connection extends Component
|
||||
$result = true;
|
||||
}
|
||||
} catch (Error|Throwable $exception) {
|
||||
$result = \Kiri::getLogger()->addError($exception, 'mysql');
|
||||
$result = addError($exception, 'mysql');
|
||||
} finally {
|
||||
return $result;
|
||||
}
|
||||
|
||||
@@ -186,7 +186,7 @@ SCRIPT;
|
||||
try {
|
||||
$response = $client->{$name}(...$arguments);
|
||||
} catch (\Throwable $throwable) {
|
||||
$response = \Kiri::getLogger()->addError($throwable->getMessage());
|
||||
$response = addError($throwable, 'redis');
|
||||
} finally {
|
||||
$pool = Kiri::getDi()->get(Pool::class);
|
||||
$pool->push($this->host, $client);
|
||||
|
||||
Reference in New Issue
Block a user