Skip to content

Commit

Permalink
logging_level
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Aug 26, 2022
1 parent 1d5aca3 commit 4fdc1dd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions conreq/_core/server_settings/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,8 @@ class GeneralSettingsForm(EnvFormMixin, ModelForm):
env_name="SAFE_MODE",
help_text="Disables all installed apps.",
)
log_level = EnvChoiceField(
logging_level = EnvChoiceField(
env_name="LOG_LEVEL",
help_text="Disables all installed apps.",
initial=settings.LOG_LEVEL,
choices=LogLevelChoices.choices,
)
Expand All @@ -53,7 +52,7 @@ class Meta:
"server_description",
"public_url",
"app_store_url",
"log_level",
"logging_level",
)

def __init__(self, *args, **kwargs):
Expand Down

0 comments on commit 4fdc1dd

Please sign in to comment.