icinga2/lib/base/logger.ti
Alexander Aleksandrovič Klimov 993c9b742d
Make ObjectImpl<Logger>#GetSeverity() non-virtual
After all it's not overridden.
2023-08-15 13:03:31 +02:00

18 lines
247 B
Plaintext

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
library base;
namespace icinga
{
abstract class Logger : ConfigObject
{
[config, set_virtual] String severity {
default {{{ return "information"; }}}
};
};
}