icinga2/lib/base/sysloglogger.ti

20 lines
244 B
Text
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2014-05-25 10:23:35 -04:00
#include "base/logger.hpp"
2013-10-26 03:41:45 -04:00
library base;
2013-10-26 03:41:45 -04:00
namespace icinga
{
class SyslogLogger : Logger
{
activation_priority -100;
[config] String facility {
default {{{ return "LOG_USER"; }}}
};
2013-10-26 03:41:45 -04:00
};
}