icingaweb2/library/Icinga/Application/Logger/Writer/StderrWriter.php
Eric Lippmann 662de28f85 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-26 17:49:26 +01:00

64 lines
1.4 KiB
PHP

<?php
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Application\Logger\Writer;
use Icinga\Cli\Screen;
use Icinga\Application\Logger;
use Icinga\Application\Logger\LogWriter;
/**
* Class to write log messages to STDERR
*/
class StderrWriter extends LogWriter
{
/**
* The current Screen in use
*
* @var Screen
*/
protected $screen;
/**
* Return the current Screen
*
* @return Screen
*/
protected function screen()
{
if ($this->screen === null) {
$this->screen = Screen::instance(STDERR);
}
return $this->screen;
}
/**
* Log a message with the given severity
*
* @param int $severity The severity to use
* @param string $message The message to log
*/
public function log($severity, $message)
{
$color = null;
switch ($severity) {
case Logger::ERROR:
$color = 'red';
break;
case Logger::WARNING:
$color = 'yellow';
break;
case Logger::INFO:
$color = 'green';
break;
case Logger::DEBUG:
$color = 'blue';
break;
}
file_put_contents('php://stderr', $this->screen()->colorize($message, $color) . "\n");
}
}