summaryrefslogtreecommitdiffstats
path: root/lib/base/journaldlogger.ti
blob: 88e9ca1e34e13a2bd733247efdf98e4fab4062d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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;
};

}