diff options
Diffstat (limited to 'cppuhelper/source/component.cxx')
-rw-r--r-- | cppuhelper/source/component.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cppuhelper/source/component.cxx b/cppuhelper/source/component.cxx index fdff1a21bab8..333812495fa6 100644 --- a/cppuhelper/source/component.cxx +++ b/cppuhelper/source/component.cxx @@ -92,12 +92,8 @@ void OComponentHelper::release() throw() catch (css::uno::RuntimeException & exc) { // release should not throw exceptions -#if OSL_DEBUG_LEVEL > 0 - OString msg( OUStringToOString( exc.Message, RTL_TEXTENCODING_ASCII_US ) ); - OSL_FAIL( msg.getStr() ); -#else (void) exc; // avoid warning about unused variable -#endif + SAL_WARN( "cppuhelper", exc.Message ); } // only the alive ref holds the object |