mirror of https://github.com/Icinga/icinga2.git
22 lines
276 B
Plaintext
22 lines
276 B
Plaintext
|
/* Icinga 2 | (c) 2021 Icinga GmbH | GPLv2+ */
|
||
|
|
||
|
#include "base/logger.hpp"
|
||
|
|
||
|
library base;
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class JournaldLogger : Logger
|
||
|
{
|
||
|
activation_priority -100;
|
||
|
|
||
|
[config] String facility {
|
||
|
default {{{ return "LOG_USER"; }}}
|
||
|
};
|
||
|
|
||
|
[config] String identifier;
|
||
|
};
|
||
|
|
||
|
}
|