icinga2/lib/base/logger.ti

16 lines
189 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] String severity;
};
}