config: change “no configuration found, using defaults” from error to warning

This commit is contained in:
Daniel Eklöf 2021-06-10 20:37:17 +02:00
parent 4a945ce466
commit 41a223e1bd
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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;
}