]> granicus.if.org Git - icinga2/blob - lib/base/sysloglogger.ti
Merge pull request #7185 from Icinga/bugfix/gelfwriter-wrong-log-facility
[icinga2] / lib / base / sysloglogger.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "base/logger.hpp"
4
5 library base;
6
7 namespace icinga
8 {
9
10 class SyslogLogger : Logger
11 {
12         activation_priority -100;
13
14         [config] String facility {
15                 default {{{ return "LOG_USER"; }}}
16         };
17 };
18
19 }