From 27f76d846f5a59ffca6a34c5f076901785f10b2a Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 21 Apr 2019 09:09:14 +0200 Subject: [PATCH] :hammer: Makes log_level optional --- phlex/config.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/phlex/config.json b/phlex/config.json index 50992ee..fe8ccae 100644 --- a/phlex/config.json +++ b/phlex/config.json @@ -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"