diff options
Diffstat (limited to 'lib/base/filelogger.ti')
-rw-r--r-- | lib/base/filelogger.ti | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/base/filelogger.ti b/lib/base/filelogger.ti new file mode 100644 index 0000000..8af2498 --- /dev/null +++ b/lib/base/filelogger.ti @@ -0,0 +1,17 @@ +/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ + +#include "base/streamlogger.hpp" + +library base; + +namespace icinga +{ + +class FileLogger : StreamLogger +{ + activation_priority -100; + + [config, required] String path; +}; + +} |