icinga2/lib/base/logger.ti

18 lines
243 B
Plaintext
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
2013-10-26 09:41:45 +02:00
library base;
2013-10-26 09:41:45 +02:00
namespace icinga
{
abstract class Logger : ConfigObject
2013-10-26 09:41:45 +02:00
{
[config, virtual] String severity {
default {{{ return "information"; }}}
};
2013-10-26 09:41:45 +02:00
};
}