Skip to content

Commit

Permalink
Move missing translations warnings to verbosestream (#8156)
Browse files Browse the repository at this point in the history
They should not spam the console and logs.
  • Loading branch information
Ekdohibs authored and SmallJoker committed Feb 2, 2019
1 parent d521e61 commit 91e5a33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/translation.cpp
Expand Up @@ -41,7 +41,7 @@ const std::wstring &Translations::getTranslation(
try {
return m_translations.at(key);
} catch (const std::out_of_range &) {
warningstream << "Translations: can't find translation for string \""
verbosestream << "Translations: can't find translation for string \""
<< wide_to_utf8(s) << "\" in textdomain \""
<< wide_to_utf8(textdomain) << "\"" << std::endl;
// Silence that warning in the future
Expand Down

0 comments on commit 91e5a33

Please sign in to comment.