Make ObjectImpl<Logger>#GetSeverity() non-virtual

After all it's not overridden.
This commit is contained in:
Alexander Aleksandrovič Klimov 2023-08-15 13:03:31 +02:00 committed by GitHub
parent 66088050b5
commit 993c9b742d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ namespace icinga
abstract class Logger : ConfigObject
{
[config, virtual] String severity {
[config, set_virtual] String severity {
default {{{ return "information"; }}}
};
};