1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-07-15 01:24:34 +02:00

always init Logger first

This commit is contained in:
Alexander Graf
2021-03-10 18:50:52 +01:00
parent c17bfae240
commit ce9a9ec572

View File

@ -375,6 +375,8 @@ def config_export(full=False, secrets=False, color=False, dns=False, output=None
""" Export configuration as YAML or JSON to stdout or file
"""
log = Logger(want_color=color or None, can_color=output.isatty())
only = only or MailuSchema.Meta.order
context = {
@ -382,7 +384,6 @@ def config_export(full=False, secrets=False, color=False, dns=False, output=None
'secrets': secrets,
'dns': dns,
}
log = Logger(want_color=color or None, can_color=output.isatty())
try:
schema = MailuSchema(only=only, context=context)