summaryrefslogtreecommitdiffstats
path: root/lib/base/logger.ti
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base/logger.ti')
-rw-r--r--lib/base/logger.ti17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/base/logger.ti b/lib/base/logger.ti
new file mode 100644
index 0000000..44226ce
--- /dev/null
+++ b/lib/base/logger.ti
@@ -0,0 +1,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"; }}}
+ };
+};
+
+}