1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00

Merge pull request #1462 from pbiering/fix-default-loglevel-and-hints

Fix default loglevel and hints
This commit is contained in:
Peter Bieringer 2024-03-22 07:18:46 +01:00 committed by GitHub
commit 53fdf08a17
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -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!

2
config
View file

@ -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

View file

@ -222,7 +222,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([
"internal": web.INTERNAL_TYPES})])),
("logging", OrderedDict([
("level", {
"value": "warning",
"value": "info",
"help": "threshold for the logger",
"type": logging_level}),
("mask_passwords", {