]> granicus.if.org Git - icinga2/blob - lib/base/logger.ti
Merge pull request #7002 from Icinga/bugfix/check_network-percent-6155
[icinga2] / lib / base / logger.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "base/configobject.hpp"
4
5 library base;
6
7 namespace icinga
8 {
9
10 abstract class Logger : ConfigObject
11 {
12         [config] String severity;
13 };
14
15 }