Skip to content

Commit 91e5a33

Browse files
EkdohibsSmallJoker
authored andcommittedFeb 2, 2019
Move missing translations warnings to verbosestream (#8156)
They should not spam the console and logs.
1 parent d521e61 commit 91e5a33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/translation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const std::wstring &Translations::getTranslation(
4141
try {
4242
return m_translations.at(key);
4343
} catch (const std::out_of_range &) {
44-
warningstream << "Translations: can't find translation for string \""
44+
verbosestream << "Translations: can't find translation for string \""
4545
<< wide_to_utf8(s) << "\" in textdomain \""
4646
<< wide_to_utf8(textdomain) << "\"" << std::endl;
4747
// Silence that warning in the future

0 commit comments

Comments
 (0)
Please sign in to comment.