Skip to content

Commit 53fdf08

Browse files
authored
Merge pull request #1462 from pbiering/fix-default-loglevel-and-hints
Fix default loglevel and hints
2 parents f0f4213 + 56a0752 commit 53fdf08

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

DOCUMENTATION.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Radicale is really easy to install and works out-of-the-box.
2424

2525
```bash
2626
python3 -m pip install --upgrade https://github.com/Kozea/Radicale/archive/master.tar.gz
27-
python3 -m radicale --storage-filesystem-folder=~/.var/lib/radicale/collections
27+
python3 -m radicale --logging-level info --storage-filesystem-folder=~/.var/lib/radicale/collections
2828
```
2929

3030
When the server is launched, open <http://localhost:5232> in your browser!

config

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112

113113
# Threshold for the logger
114114
# Value: debug | info | warning | error | critical
115-
#level = warning
115+
#level = info
116116

117117
# Don't include passwords in logs
118118
#mask_passwords = True

radicale/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def _convert_to_bool(value: Any) -> bool:
222222
"internal": web.INTERNAL_TYPES})])),
223223
("logging", OrderedDict([
224224
("level", {
225-
"value": "warning",
225+
"value": "info",
226226
"help": "threshold for the logger",
227227
"type": logging_level}),
228228
("mask_passwords", {

0 commit comments

Comments
 (0)