diff options
author | Marcel Metz <mmetz@adrian-broher.net> | 2012-01-16 23:11:06 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-01-17 23:27:43 +0100 |
commit | 3f7c5847ffca045230f4fa2a163405e35afb04d7 (patch) | |
tree | 108854cdf3c7e75aab55242a8c719b9c3fa681e4 /svtools/source/config | |
parent | 64fb265325287ed91ba92c2d15d7b51d3f6f69c6 (diff) |
Replaced SAL_INFO with SAL_WARN were applicable.
Diffstat (limited to 'svtools/source/config')
-rw-r--r-- | svtools/source/config/helpopt.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/config/helpopt.cxx b/svtools/source/config/helpopt.cxx index aeac4571b2d4..810a8793e343 100644 --- a/svtools/source/config/helpopt.cxx +++ b/svtools/source/config/helpopt.cxx @@ -214,7 +214,7 @@ void SvtHelpOptions_Impl::Load(const uno::Sequence< ::rtl::OUString>& rProperty bHelpAgentEnabled = bTmp; break; default: - SAL_INFO( "svtools", "Wrong Member!" ); + SAL_WARN( "svtools.config", "Wrong Member!" ); break; } } @@ -233,7 +233,7 @@ void SvtHelpOptions_Impl::Load(const uno::Sequence< ::rtl::OUString>& rProperty sHelpStyleSheet = aTmpStr; break; default: - SAL_INFO( "svtools", "Wrong Member!" ); + SAL_WARN( "svtools.config", "Wrong Member!" ); break; } } @@ -250,13 +250,13 @@ void SvtHelpOptions_Impl::Load(const uno::Sequence< ::rtl::OUString>& rProperty break; default: - SAL_INFO( "svtools", "Wrong Member!" ); + SAL_WARN( "svtools.config", "Wrong Member!" ); break; } } else { - SAL_INFO( "svtools", "Wrong Type!" ); + SAL_WARN( "svtools.config", "Wrong Type!" ); } } } @@ -431,7 +431,7 @@ void SvtHelpOptions_Impl::implSaveURLCounters() sNewNodeName = sNodeNameBase; if (!getUniqueSetElementName(sIgnoreListNodePath, sNewNodeName)) { - SAL_INFO( "svtools", "SvtHelpOptions_Impl::implSaveURLCounters: could not get a free name!" ); + SAL_WARN( "svtools.config", "SvtHelpOptions_Impl::implSaveURLCounters: could not get a free name!" ); continue; } AddNode(sIgnoreListNodePath, sNewNodeName); |