From 1a0c3ead4da99a57896295e57926abfba50a27aa Mon Sep 17 00:00:00 2001 From: Themaister Date: Wed, 9 Jan 2013 13:31:41 +0100 Subject: [PATCH] Log where config file is loaded from. --- settings.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/settings.c b/settings.c index 75764c7d01..41cdccd535 100644 --- a/settings.c +++ b/settings.c @@ -315,9 +315,15 @@ static void parse_config_file(void) { bool ret; if (*g_extern.config_path) + { + RARCH_LOG("Loading config from: %s.\n", g_extern.config_path); ret = config_load_file(g_extern.config_path); + } else + { + RARCH_LOG("Loading NULL config.\n"); ret = config_load_file(NULL); + } if (!ret) {