Skip to content

Commit 6fb691c

Browse files
committed
change default log level to warning
1 parent 75f8944 commit 6fb691c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
| ALLOW_ACCOUNT_CREATION | Allow creation of new accounts | NO | True |
1313
| DATA_PATH | Path to your data folder | NO | "./data" |
1414
| 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" |
1616
| HOST | host to listen for requests | NO | "127.0.0.1" |
1717
| PORT | port to listen for requests | NO | 8000 |
1818
| BASE_URL | The base url prefix | NO | "/" |

src/note_mark/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Settings(BaseSettings):
1212
ALLOW_ACCOUNT_CREATION: Optional[bool] = True
1313
AUTH_COOKIE_SECURE: Optional[bool] = False
1414

15-
LOG_LEVEL: Optional[str] = "INFO"
15+
LOG_LEVEL: Optional[str] = "WARNING"
1616
BASE_URL: Optional[str] = ""
1717
HOST: str = "127.0.0.1"
1818
PORT: int = 8000

0 commit comments

Comments
 (0)