Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkcgen <kcgen@users.noreply.github.com>2022-08-27 19:58:59 +0300
committerkcgen <kcgen@users.noreply.github.com>2022-08-27 19:58:59 +0300
commite38af1685036ed0699b1e33c4b1aaa18249ffcce (patch)
treea8f0bd567da46ed313eb30f35318479deb1832f7
parent251cb7a27b96c002aa015698f8ebe5ffa4b3a9d3 (diff)
Add verbose logging to MSG_Initkc/debug-win-layout-1
-rw-r--r--src/misc/messages.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/misc/messages.cpp b/src/misc/messages.cpp
index 289c9c3a2..fcd215b33 100644
--- a/src/misc/messages.cpp
+++ b/src/misc/messages.cpp
@@ -211,5 +211,7 @@ void MSG_Init([[maybe_unused]] Section_prop *section)
return;
// If we got here, then the language was not found
- LOG_MSG("LANG: No language could be loaded, using English messages");
+ LOG_WARNING("LANG: The '%s' language resource file: '%s' could be loaded, using English messages",
+ lang.c_str(),
+ lng_file.c_str());
}