modify plugin name

This commit is contained in:
2022-06-22 16:42:10 +08:00
parent 5c91717d84
commit 77087baed9
+2 -2
View File
@@ -147,9 +147,9 @@ class Logger implements LoggerInterface
return; return;
} }
$_string = '[' . now() . '] production.' . $level . ': ' . $message; $_string = '[' . now() . '] production.' . $level . ': ' . $message . PHP_EOL;
if (!empty($context)) { if (!empty($context)) {
$_string .= PHP_EOL . $this->_string($context); $_string .= $this->_string($context);
} }
file_put_contents('php://output', $_string); file_put_contents('php://output', $_string);