blob: edf65fc06f79fd49b78e0bcf3d0ef1b7db360cd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Icinga 2 | (c) 2021 Icinga GmbH | GPLv2+ */
#include "base/logger.hpp"
library base;
namespace icinga
{
class WindowsEventLogLogger : Logger
{
activation_priority -100;
};
}
|