We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
чтобы добавить поддержку CLIConsole в форматтер - нужно писать свой LineFormatter - на основе обычного LineFormatter добавить строчку
$output = CLIConsole::format($output) в конец метода LineFormatter::format()
https://github.com/Seldaek/monolog/blob/main/doc/02-handlers-formatters-processors.md#formatters
Чтобы были красивые цветные логи при вызове:
AppLogger::addScope('console', [ [ 'php://stdout', Logger::INFO, [ 'handler' => static function() { $formatter = new LineFormatter("[%datetime%]: %message% %context% %extra%\n", "Y-m-d H:i:s", true, true); $handler = new StreamHandler('php://stdout', Logger::INFO); $handler->setFormatter($formatter); return $handler; } ] ] ], $options['verbose']);
Перенесено из ArrisFramework/Arris#12
The text was updated successfully, but these errors were encountered:
No branches or pull requests
чтобы добавить поддержку CLIConsole в форматтер - нужно писать свой LineFormatter - на основе обычного LineFormatter добавить строчку
$output = CLIConsole::format($output) в конец метода LineFormatter::format()
https://github.com/Seldaek/monolog/blob/main/doc/02-handlers-formatters-processors.md#formatters
Чтобы были красивые цветные логи при вызове:
Перенесено из ArrisFramework/Arris#12
The text was updated successfully, but these errors were encountered: