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:
commit
53fdf08a17
3 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@ Radicale is really easy to install and works out-of-the-box.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python3 -m pip install --upgrade https://github.com/Kozea/Radicale/archive/master.tar.gz
|
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!
|
When the server is launched, open <http://localhost:5232> in your browser!
|
||||||
|
|
2
config
2
config
|
@ -112,7 +112,7 @@
|
||||||
|
|
||||||
# Threshold for the logger
|
# Threshold for the logger
|
||||||
# Value: debug | info | warning | error | critical
|
# Value: debug | info | warning | error | critical
|
||||||
#level = warning
|
#level = info
|
||||||
|
|
||||||
# Don't include passwords in logs
|
# Don't include passwords in logs
|
||||||
#mask_passwords = True
|
#mask_passwords = True
|
||||||
|
|
|
@ -222,7 +222,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([
|
||||||
"internal": web.INTERNAL_TYPES})])),
|
"internal": web.INTERNAL_TYPES})])),
|
||||||
("logging", OrderedDict([
|
("logging", OrderedDict([
|
||||||
("level", {
|
("level", {
|
||||||
"value": "warning",
|
"value": "info",
|
||||||
"help": "threshold for the logger",
|
"help": "threshold for the logger",
|
||||||
"type": logging_level}),
|
"type": logging_level}),
|
||||||
("mask_passwords", {
|
("mask_passwords", {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue