summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-08-30 16:57:36 +0200
committerGuru <alexandrgproductengine@lindenlab.com>2023-08-30 17:03:13 +0200
commit200696f25c0db21469c64b89799a2dab54d082d9 (patch)
treeb81e7d8d1b4be1bfda25089d97bf331abcf9afec /indra/newview
parent6a1846e91acf0b003c19f2d08a6ccb13d30f39a0 (diff)
SL-19664 Crash in LLAppViewer::initStrings - make the error message more informative
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llappviewer.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index a0135fb6e2..ed9bcd9bc6 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -2980,7 +2980,10 @@ void LLAppViewer::initStrings()
{
// initial check to make sure files are there failed
gDirUtilp->dumpCurrentDirectories(LLError::LEVEL_WARN);
- LL_ERRS() << "Viewer failed to find localization and UI files. Please reinstall viewer from https://secondlife.com/support/downloads/ and contact https://support.secondlife.com if issue persists after reinstall." << LL_ENDL;
+ LL_ERRS() << "Viewer failed to find localization and UI files"
+ << " (strings_path_full = '" << strings_path_full << "')."
+ << " Please reinstall viewer from https://secondlife.com/support/downloads"
+ << " and contact https://support.secondlife.com if issue persists after reinstall." << LL_ENDL;
}
LLTransUtil::parseStrings(strings_file, default_trans_args);
LLTransUtil::parseLanguageStrings("language_settings.xml");