1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-01 16:24:12 +01:00

[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

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;