Skip to content

Commit

Permalink
chore(config): update default log level from DEBUG to INFO
Browse files Browse the repository at this point in the history
  • Loading branch information
AAClause committed Oct 7, 2024
1 parent f0b8548 commit 93fda38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basilisk/config/main_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
class GeneralSettings(BaseModel):
language: str = Field(default="auto")
advanced_mode: bool = Field(default=False)
log_level: LogLevelEnum = Field(default=LogLevelEnum.DEBUG)
log_level: LogLevelEnum = Field(default=LogLevelEnum.INFO)
automatic_update_mode: AutomaticUpdateModeEnum = Field(
default=AutomaticUpdateModeEnum.NOTIFY
)
Expand Down

0 comments on commit 93fda38

Please sign in to comment.