mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-05-28 04:02:39 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
41 lines
1 KiB
PHP
41 lines
1 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\Application\Logger;
|
|
use Icinga\Application\Logger\LogWriter;
|
|
use Icinga\Data\ConfigObject;
|
|
use Icinga\Exception\NotWritableError;
|
|
|
|
/**
|
|
* Log to the webserver log, a file or syslog
|
|
*
|
|
* @see https://secure.php.net/manual/en/errorfunc.configuration.php#ini.error-log
|
|
*/
|
|
class PhpWriter extends LogWriter
|
|
{
|
|
/**
|
|
* Prefix to prepend to each message
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $ident;
|
|
|
|
public function __construct(ConfigObject $config)
|
|
{
|
|
parent::__construct($config);
|
|
$this->ident = $config->get('application', 'icingaweb2');
|
|
}
|
|
|
|
public function log($severity, $message)
|
|
{
|
|
if (ini_get('error_log') === 'syslog') {
|
|
$message = str_replace("\n", ' ', $message);
|
|
}
|
|
|
|
error_log($this->ident . ': ' . Logger::$levels[$severity] . ' - ' . $message);
|
|
}
|
|
}
|