Manage null default state for logging integration and DB definition

This commit is contained in:
AlanCoding
2016-12-02 16:45:27 -05:00
parent ebff4f4f24
commit 064a40ba92
6 changed files with 31 additions and 4 deletions

View File

@@ -296,3 +296,12 @@ register(
category=_('Logging'),
category_slug='logging',
)
register(
'LOG_AGGREGATOR_ENABLED',
field_class=fields.BooleanField,
default=False,
label=_('Flag denoting whether to use the external logger system'),
help_text=_('If not set, only normal settings data will be used to configure loggers.'),
category=_('Logging'),
category_slug='logging',
)