summaryrefslogtreecommitdiff
path: root/unotools/source/i18n/textsearch.cxx
diff options
context:
space:
mode:
authorMarcel Metz <mmetz@adrian-broher.net>2012-01-16 18:03:17 +0100
committerMichael Stahl <mstahl@redhat.com>2012-01-17 23:27:41 +0100
commit6cd5f6f506e148afdf192b4627ecd89330cf346c (patch)
treefdb78bc6b1f7ebc8880ace1e0bd68436c47e1386 /unotools/source/i18n/textsearch.cxx
parentd20033a3eb09125bd74e31907d681a87471cce78 (diff)
Replaced SAL_INFO with SAL_WARN were applicable.
Diffstat (limited to 'unotools/source/i18n/textsearch.cxx')
-rw-r--r--unotools/source/i18n/textsearch.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/i18n/textsearch.cxx b/unotools/source/i18n/textsearch.cxx
index 19fe451f43a0..ed6e491924b6 100644
--- a/unotools/source/i18n/textsearch.cxx
+++ b/unotools/source/i18n/textsearch.cxx
@@ -132,7 +132,7 @@ Reference<XTextSearch> TextSearch::getXTextSearch( const SearchOptions& rPara )
}
catch ( Exception& )
{
- SAL_INFO( "unotools", "TextSearch ctor: Exception caught!" );
+ SAL_WARN( "unotools.i18n", "TextSearch ctor: Exception caught!" );
}
return rCache.xTextSearch;
}
@@ -252,7 +252,7 @@ int TextSearch::SearchFrwrd( const String & rStr, xub_StrLen* pStart,
}
catch ( Exception& )
{
- SAL_INFO( "unotools", "SearchForward: Exception caught!" );
+ SAL_WARN( "unotools.i18n", "SearchForward: Exception caught!" );
}
return nRet;
}
@@ -283,7 +283,7 @@ int TextSearch::SearchBkwrd( const String & rStr, xub_StrLen* pStart,
}
catch ( Exception& )
{
- SAL_INFO( "unotools", "SearchBackward: Exception caught!" );
+ SAL_WARN( "unotools.i18n", "SearchBackward: Exception caught!" );
}
return nRet;
}