From 41a223e1bd2e30792975aa7cf136a77a9cf11033 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 10 Jun 2021 20:37:17 +0200 Subject: [PATCH] =?UTF-8?q?config:=20change=20=E2=80=9Cno=20configuration?= =?UTF-8?q?=20found,=20using=20defaults=E2=80=9D=20from=20error=20to=20war?= =?UTF-8?q?ning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index 17d6ce5f..f032c024 100644 --- a/config.c +++ b/config.c @@ -2662,7 +2662,7 @@ config_load(struct config *conf, const char *conf_path, } else { conf_file = open_config(); if (conf_file.fd < 0) { - LOG_AND_NOTIFY_ERR("no configuration found, using defaults"); + LOG_AND_NOTIFY_WARN("no configuration found, using defaults"); ret = !errors_are_fatal; goto out; }