Merge pull request #1462 from pbiering/fix-default-loglevel-and-hints
Fix default loglevel and hints
This commit is contained in:
@@ -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
2
config
@@ -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
|
||||
|
||||
@@ -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", {
|
||||
|
||||
Reference in New Issue
Block a user