icingaweb2/library/Icinga/Application/Logger/LogWriter.php

33 lines
652 B
PHP
Raw Permalink Normal View History

2014-02-26 04:47:02 -05:00
<?php
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
2014-02-26 04:47:02 -05:00
namespace Icinga\Application\Logger;
2014-02-26 04:47:02 -05:00
use Icinga\Data\ConfigObject;
2014-02-26 04:47:02 -05:00
/**
* Abstract class for writers that write messages to a log
*/
abstract class LogWriter
{
/**
* @var ConfigObject
*/
protected $config;
2014-02-26 04:47:02 -05:00
/**
* Create a new log writer initialized with the given configuration
*/
public function __construct(ConfigObject $config)
{
$this->config = $config;
}
2014-02-26 04:47:02 -05:00
/**
* Log a message with the given severity
*/
abstract public function log($severity, $message);
}