summaryrefslogtreecommitdiffstats
path: root/lib/base/logger.ti
blob: 44226cee41ac40dc097067af5ed3def67168dd1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */

#include "base/configobject.hpp"

library base;

namespace icinga
{

abstract class Logger : ConfigObject
{
	[config, virtual] String severity {
		default {{{ return "information"; }}}
	};
};

}