[util] Add log message when loading a configuration file

This commit is contained in:
Philip Rebohle 2018-08-17 19:42:32 +02:00
parent 747264213c
commit 55632c6b61
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 4 additions and 0 deletions

View File

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