summaryrefslogtreecommitdiffstats
path: root/lib/compat/compatlogger.ti
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compat/compatlogger.ti')
-rw-r--r--lib/compat/compatlogger.ti23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/compat/compatlogger.ti b/lib/compat/compatlogger.ti
new file mode 100644
index 0000000..56431ec
--- /dev/null
+++ b/lib/compat/compatlogger.ti
@@ -0,0 +1,23 @@
+/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
+
+#include "base/configobject.hpp"
+#include "base/application.hpp"
+
+library compat;
+
+namespace icinga
+{
+
+class CompatLogger : ConfigObject
+{
+ activation_priority 100;
+
+ [config] String log_dir {
+ default {{{ return Configuration::LogDir + "/compat"; }}}
+ };
+ [config] String rotation_method {
+ default {{{ return "HOURLY"; }}}
+ };
+};
+
+}