add a setting for enabling high rsyslogd verbosity

This commit is contained in:
Ryan Petrello
2020-04-23 12:04:19 -04:00
parent e7a9604896
commit e51d0b6fde
3 changed files with 13 additions and 0 deletions
+10
View File
@@ -810,6 +810,16 @@ register(
category=_('Logging'),
category_slug='logging',
)
register(
'LOG_AGGREGATOR_RSYSLOGD_DEBUG',
field_class=fields.BooleanField,
default=False,
label=_('Enable rsyslogd debugging'),
help_text=_('Enabled high verbosity debugging for rsyslogd. '
'Useful for debugging connection issues for external log aggregation.'),
category=_('Logging'),
category_slug='logging',
)
register(