🔨 Makes log_level optional

This commit is contained in:
Franck Nijhof 2019-04-21 09:09:14 +02:00
parent db2e555388
commit 27f76d846f
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3

View file

@ -27,13 +27,12 @@
"config"
],
"options": {
"log_level": "info",
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str"