diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index 2ffc4089..8b10744d 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -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 in your browser! diff --git a/config b/config index 3df6a485..00343d92 100644 --- a/config +++ b/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 diff --git a/radicale/config.py b/radicale/config.py index fc161218..bb2a0653 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -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", {