1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-04 12:17:35 +02:00

Update html color

This commit is contained in:
Antoine Makdessi
2020-01-07 14:49:18 +01:00
committed by GitHub
parent f2d4315237
commit c0f8ed9797

View File

@@ -27,13 +27,13 @@ class HtmlFormatter extends NormalizerFormatter
* Translates Monolog log levels to html color priorities. * Translates Monolog log levels to html color priorities.
*/ */
protected $logLevels = [ protected $logLevels = [
Logger::DEBUG => '#cccccc', Logger::DEBUG => '#CCCCCC',
Logger::INFO => '#468847', Logger::INFO => '#28A745',
Logger::NOTICE => '#3a87ad', Logger::NOTICE => '#17A2B8',
Logger::WARNING => '#c09853', Logger::WARNING => '#FFC107',
Logger::ERROR => '#f0ad4e', Logger::ERROR => '#FD7E14',
Logger::CRITICAL => '#FF7708', Logger::CRITICAL => '#DC3545',
Logger::ALERT => '#C12A19', Logger::ALERT => '#821722',
Logger::EMERGENCY => '#000000', Logger::EMERGENCY => '#000000',
]; ];