From 55632c6b6147c5156eb3d42f14433ebd734d505c Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Fri, 17 Aug 2018 19:42:32 +0200 Subject: [PATCH] [util] Add log message when loading a configuration file --- src/util/config/config.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 81dc64e6..20927dba 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -189,6 +189,10 @@ namespace dxvk { if (!stream) return config; + + // Inform the user that we loaded a file, might + // help when debugging configuration issues + Logger::info(str::format("Found config file: ", filePath)); // Parse the file line by line std::string line;