diff options
author | Marcel Metz <mmetz@adrian-broher.net> | 2012-01-16 21:38:13 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-01-17 23:27:42 +0100 |
commit | 91fe68f4c2d66dc34b99386f824abdd6c09f6bb1 (patch) | |
tree | 39621784f14befee46b01812ff546920343d4945 /sfx2/source/bastyp | |
parent | 28c9559f64d1d4ff2d0e58d8ecac621e8c7dee90 (diff) |
Replaced SAL_INFO with SAL_WARN were applicable.
Diffstat (limited to 'sfx2/source/bastyp')
-rw-r--r-- | sfx2/source/bastyp/helper.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sfx2/source/bastyp/helper.cxx b/sfx2/source/bastyp/helper.cxx index c60d9a0ba7b2..7885f0d98a8e 100644 --- a/sfx2/source/bastyp/helper.cxx +++ b/sfx2/source/bastyp/helper.cxx @@ -108,11 +108,11 @@ uno::Sequence < OUString > SfxContentHelper::GetResultSet( const String& rURL ) } catch( const ucb::CommandAbortedException& ) { - SAL_INFO( "sfx2", "createCursor: CommandAbortedException" ); + SAL_WARN( "sfx2.bastyp", "createCursor: CommandAbortedException" ); } catch( const uno::Exception& ) { - SAL_INFO( "sfx2", "createCursor: Any other exception" ); + SAL_WARN( "sfx2.bastyp", "createCursor: Any other exception" ); } if ( xResultSet.is() ) @@ -138,17 +138,17 @@ uno::Sequence < OUString > SfxContentHelper::GetResultSet( const String& rURL ) } catch( const ucb::CommandAbortedException& ) { - SAL_INFO( "sfx2", "XContentAccess::next(): CommandAbortedException" ); + SAL_WARN( "sfx2.bastyp", "XContentAccess::next(): CommandAbortedException" ); } catch( const uno::Exception& ) { - SAL_INFO( "sfx2", "XContentAccess::next(): Any other exception" ); + SAL_WARN( "sfx2.bastyp", "XContentAccess::next(): Any other exception" ); } } } catch( const uno::Exception& e ) { - SAL_INFO( "sfx2", "GetResultSet: Any other exception: " << e.Message ); + SAL_WARN( "sfx2.bastyp", "GetResultSet: Any other exception: " << e.Message ); } if ( pList ) @@ -299,7 +299,7 @@ sal_Bool SfxContentHelper::IsHelpErrorDocument( const String& rURL ) uno::Reference< ucb::XCommandEnvironment > () ); if ( !( aCnt.getPropertyValue( OUString(RTL_CONSTASCII_USTRINGPARAM("IsErrorDocument")) ) >>= bRet ) ) { - SAL_INFO( "sfx2", "Property 'IsErrorDocument' is missing" ); + SAL_WARN( "sfx2.bastyp", "Property 'IsErrorDocument' is missing" ); } } catch( const uno::Exception& ) @@ -324,11 +324,11 @@ sal_uIntPtr SfxContentHelper::GetSize( const String& rContent ) } catch( const ucb::CommandAbortedException& ) { - SAL_INFO( "sfx2", "CommandAbortedException" ); + SAL_WARN( "sfx2.bastyp", "CommandAbortedException" ); } catch( const uno::Exception& ) { - SAL_INFO( "sfx2", "Any other exception" ); + SAL_WARN( "sfx2.bastyp", "Any other exception" ); } nSize = (sal_uInt32)nTemp; return nSize; |