i18npool/source/languagetag/languagetag.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
New commits: commit 39d6c353fb40e6c20fc69d5d3c07181d2ef1dd45 Author: Stephan Bergmann <[email protected]> Date: Fri Oct 5 16:50:13 2012 +0200 Turn a SAL_WARN into SAL_INFO ...as lingucomponent GetOldStyleDics SYSTEM_DICTS code harmlessly triggers it routinely with input containing _ and then fixing the input. Change-Id: Id00857f0b89eb65ad155e8cf0883dd2f45851c7d diff --git a/i18npool/source/languagetag/languagetag.cxx b/i18npool/source/languagetag/languagetag.cxx index df1533b..14cad58 100644 --- a/i18npool/source/languagetag/languagetag.cxx +++ b/i18npool/source/languagetag/languagetag.cxx @@ -342,8 +342,10 @@ bool LanguageTag::canonicalize() const } else { - SAL_WARN( "i18npool.langtag", "LanguageTag::canonicalize: could not parse, " << - (aError.p ? aError.p->message : "")); + SAL_INFO( + "i18npool.langtag", + "LanguageTag::canonicalize " << maBcp47 << ": could not parse, " + << (aError.p ? aError.p->message : "")); } meIsValid = DECISION_NO; return false; _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
