filter: convert OSL_FAIL to SAL_WARN
That literal %s was irritating. Change-Id: I2925b26b1f3d1c101106ca616d18b24b41210c72
This commit is contained in:
parent
5d826db15b
commit
a8f053697c
@ -109,7 +109,7 @@ bool SAL_CALL XmlFilterAdaptor::importImpl( const Sequence< css::beans::Property
|
||||
|
||||
Reference < XDocumentHandler > xHandler( mxContext->getServiceManager()->createInstanceWithArgumentsAndContext( sXMLImportService, aAnys, mxContext ), UNO_QUERY );
|
||||
if (!xHandler.is()) {
|
||||
OSL_FAIL("XMLReader::Read: %s Unable to create service instance xHandler\n" );
|
||||
SAL_WARN("filter.xmlfa", "XmlFilterAdaptor: unable to create service " << sXMLImportService);
|
||||
return false;
|
||||
}
|
||||
Reference < XImporter > xImporter( xHandler, UNO_QUERY );
|
||||
@ -124,7 +124,7 @@ bool SAL_CALL XmlFilterAdaptor::importImpl( const Sequence< css::beans::Property
|
||||
|
||||
Reference< XInterface > xConvBridge(mxContext->getServiceManager()->createInstanceWithContext(udConvertClass, mxContext), UNO_QUERY);
|
||||
if (!xConvBridge.is()) {
|
||||
OSL_FAIL( "XMLReader::Read: %s service missing\n" );
|
||||
SAL_WARN("filter.xmlfa", "XmlFilterAdaptor: unable to create service " << udConvertClass);
|
||||
return false;
|
||||
}
|
||||
if (xStatusIndicator.is())
|
||||
@ -174,7 +174,7 @@ bool SAL_CALL XmlFilterAdaptor::importImpl( const Sequence< css::beans::Property
|
||||
if (xStatusIndicator.is())
|
||||
xStatusIndicator->end();
|
||||
|
||||
OSL_FAIL( OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US).getStr());
|
||||
SAL_WARN("filter.xmlfa", "XmlFilterAdaptor: exception: " << e.Message);
|
||||
return false;
|
||||
}
|
||||
if (xStatusIndicator.is()) {
|
||||
@ -204,7 +204,7 @@ bool SAL_CALL XmlFilterAdaptor::exportImpl( const Sequence< css::beans::Property
|
||||
// Set up converter bridge.
|
||||
Reference< css::xml::XExportFilter > xConverter(mxContext->getServiceManager()->createInstanceWithContext( udConvertClass, mxContext ), UNO_QUERY);
|
||||
if (!xConverter.is()) {
|
||||
OSL_FAIL( "xml export sub service missing" );
|
||||
SAL_WARN("filter.xmlfa", "XmlFilterAdaptor: unable to create service " << udConvertClass);
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -287,9 +287,9 @@ bool SAL_CALL XmlFilterAdaptor::exportImpl( const Sequence< css::beans::Property
|
||||
return false;
|
||||
}
|
||||
}
|
||||
catch( const Exception& exE )
|
||||
catch (const Exception& e)
|
||||
{
|
||||
OSL_FAIL( OUStringToOString( exE.Message, RTL_TEXTENCODING_ASCII_US).getStr());
|
||||
SAL_WARN("filter.xmlfa", "XmlFilterAdaptor: exception: " << e.Message);
|
||||
if (xStatusIndicator.is())
|
||||
xStatusIndicator->end();
|
||||
return false;
|
||||
|
@ -179,6 +179,7 @@ certain functionality.
|
||||
@li @c filter.pdf
|
||||
@li @c filter.pict
|
||||
@li @c filter.tiff
|
||||
@li @c filter.xmlfa
|
||||
@li @c filter.xslt - xslt import/export
|
||||
|
||||
@section oox
|
||||
|
Loading…
x
Reference in New Issue
Block a user