diff options
Diffstat (limited to 'src/Main.cxx')
-rw-r--r-- | src/Main.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Main.cxx b/src/Main.cxx index 5d47c0a1c..b45e2c3ae 100644 --- a/src/Main.cxx +++ b/src/Main.cxx @@ -160,18 +160,18 @@ glue_db_init_and_load(void) const struct config_param *path = config_get_param(CONF_DB_FILE); if (param != nullptr && path != nullptr) - LogInfo(main_domain, - "Found both 'database' and 'db_file' setting - ignoring the latter"); + LogWarning(main_domain, + "Found both 'database' and 'db_file' setting - ignoring the latter"); if (!mapper_has_music_directory()) { if (param != nullptr) - LogInfo(main_domain, - "Found database setting without " - "music_directory - disabling database"); + LogDefault(main_domain, + "Found database setting without " + "music_directory - disabling database"); if (path != nullptr) - LogInfo(main_domain, - "Found db_file setting without " - "music_directory - disabling database"); + LogDefault(main_domain, + "Found db_file setting without " + "music_directory - disabling database"); return true; } |