mirror of https://github.com/Icinga/icinga2.git
16 lines
183 B
Plaintext
16 lines
183 B
Plaintext
|
/* Icinga 2 | (c) 2021 Icinga GmbH | GPLv2+ */
|
||
|
|
||
|
#include "base/logger.hpp"
|
||
|
|
||
|
library base;
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class WindowsEventLogLogger : Logger
|
||
|
{
|
||
|
activation_priority -100;
|
||
|
};
|
||
|
|
||
|
}
|