File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 12
12
| ALLOW_ACCOUNT_CREATION | Allow creation of new accounts | NO | True |
13
13
| DATA_PATH | Path to your data folder | NO | "./data" |
14
14
| AUTH_COOKIE_SECURE | Whether to require https for cookies | NO | False |
15
- | LOG_LEVEL | What log level to use | NO | "INFO" |
15
+ | LOG_LEVEL | What log level to use | NO | "WARNING" |
16
16
| HOST | host to listen for requests | NO | "127.0.0.1" |
17
17
| PORT | port to listen for requests | NO | 8000 |
18
18
| BASE_URL | The base url prefix | NO | "/" |
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class Settings(BaseSettings):
12
12
ALLOW_ACCOUNT_CREATION : Optional [bool ] = True
13
13
AUTH_COOKIE_SECURE : Optional [bool ] = False
14
14
15
- LOG_LEVEL : Optional [str ] = "INFO "
15
+ LOG_LEVEL : Optional [str ] = "WARNING "
16
16
BASE_URL : Optional [str ] = ""
17
17
HOST : str = "127.0.0.1"
18
18
PORT : int = 8000
You can’t perform that action at this time.
0 commit comments