Skip to content

Commit

Permalink
Merge pull request #1462 from pbiering/fix-default-loglevel-and-hints
Browse files Browse the repository at this point in the history
Fix default loglevel and hints
  • Loading branch information
pbiering authored Mar 22, 2024
2 parents f0f4213 + 56a0752 commit 53fdf08
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Radicale is really easy to install and works out-of-the-box.

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

When the server is launched, open <http://localhost:5232> in your browser!
Expand Down
2 changes: 1 addition & 1 deletion config
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@

# Threshold for the logger
# Value: debug | info | warning | error | critical
#level = warning
#level = info

# Don't include passwords in logs
#mask_passwords = True
Expand Down
2 changes: 1 addition & 1 deletion radicale/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def _convert_to_bool(value: Any) -> bool:
"internal": web.INTERNAL_TYPES})])),
("logging", OrderedDict([
("level", {
"value": "warning",
"value": "info",
"help": "threshold for the logger",
"type": logging_level}),
("mask_passwords", {
Expand Down

0 comments on commit 53fdf08

Please sign in to comment.