Merge pull request #9851 from Icinga/Al2Klimov-patch-3

Make ObjectImpl<Logger>#GetSeverity() non-virtual
This commit is contained in:
Alexander Aleksandrovič Klimov 2023-12-22 12:44:51 +01:00 committed by GitHub
commit 28b2db8446
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"; }}}
};
};