diff options
author | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2012-07-02 14:26:51 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2012-07-02 14:28:29 +0200 |
commit | 16009e34246c60be664820d4c28c5ffeadeb87af (patch) | |
tree | cabfdccbef44fb0accb7fe0b8c2b969681ad726f /ucb | |
parent | 1ddd3d0f9a30959e47a745c2b2a5d051b2ce0784 (diff) |
CMIS UCP: show some caught exceptions in ucpcmis.INFO
Change-Id: I2ebbed596cc9c21759633154a46c15e5f0f66e72
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/cmis/cmis_content.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx index 039181365b32..dbc9332a80f9 100644 --- a/ucb/source/ucp/cmis/cmis_content.cxx +++ b/ucb/source/ucp/cmis/cmis_content.cxx @@ -244,6 +244,7 @@ namespace cmis } catch ( const libcmis::Exception& e ) { + SAL_INFO( "cmisucp", "Unexpected libcmis exception: " << e.what( ) ); ucbhelper::cancelCommandExecution( ucb::IOErrorCode_GENERAL, uno::Sequence< uno::Any >( 0 ), @@ -691,6 +692,7 @@ namespace cmis } catch ( const libcmis::Exception& e ) { + SAL_INFO( "cmisucp", "Unexpected libcmis exception: " << e.what( ) ); ucbhelper::cancelCommandExecution( ucb::IOErrorCode_GENERAL, uno::Sequence< uno::Any >( 0 ), @@ -758,6 +760,7 @@ namespace cmis } catch ( const libcmis::Exception& e ) { + SAL_INFO( "cmisucp", "Unexpected libcmis exception: " << e.what( ) ); ucbhelper::cancelCommandExecution( ucb::IOErrorCode_GENERAL, uno::Sequence< uno::Any >( 0 ), @@ -800,6 +803,7 @@ namespace cmis } catch ( const libcmis::Exception& e ) { + SAL_INFO( "cmisucp", "Unexpected libcmis exception: " << e.what( ) ); ucbhelper::cancelCommandExecution( ucb::IOErrorCode_GENERAL, uno::Sequence< uno::Any >( 0 ), @@ -1059,6 +1063,7 @@ namespace cmis } catch ( const libcmis::Exception& e ) { + SAL_INFO( "cmisucp", "Unexpected libcmis exception: " << e.what( ) ); ucbhelper::cancelCommandExecution( ucb::IOErrorCode_GENERAL, uno::Sequence< uno::Any >( 0 ), |