diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-10-05 16:50:13 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-10-05 16:50:17 +0200 |
commit | 39d6c353fb40e6c20fc69d5d3c07181d2ef1dd45 (patch) | |
tree | 9eb1d7ca774d5a5069356bb2c038863270639fe9 /i18npool/source | |
parent | 56c520fa70ae86ad06716bde63a35d205b688c02 (diff) |
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
Diffstat (limited to 'i18npool/source')
-rw-r--r-- | i18npool/source/languagetag/languagetag.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/i18npool/source/languagetag/languagetag.cxx b/i18npool/source/languagetag/languagetag.cxx index df1533bd998f..14cad588a857 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; |