Better logging
Change-Id: Ic3dca6f1f0c0f7de7070801793938569e76e1907
This commit is contained in:
@@ -262,8 +262,12 @@ css::uno::Reference< css::uno::XInterface > ServiceHandler::implts_dispatch( con
|
|||||||
// ignore all errors - inclusive runtime errors!
|
// ignore all errors - inclusive runtime errors!
|
||||||
// E.g. a script based service (written in phyton) could not be executed
|
// E.g. a script based service (written in phyton) could not be executed
|
||||||
// because it contains syntax errors, which was detected at runtime ...
|
// because it contains syntax errors, which was detected at runtime ...
|
||||||
catch(const css::uno::Exception&)
|
catch(const css::uno::Exception& e)
|
||||||
{ xService.clear(); }
|
{
|
||||||
|
SAL_WARN(
|
||||||
|
"fwk.dispatch", "ignored UNO Exception \"" << e.Message << '"');
|
||||||
|
xService.clear();
|
||||||
|
}
|
||||||
|
|
||||||
return xService;
|
return xService;
|
||||||
}
|
}
|
||||||
|
@@ -127,6 +127,7 @@ certain functionality.
|
|||||||
|
|
||||||
@li @c fwk - framework
|
@li @c fwk - framework
|
||||||
@li @c fwk.desktop
|
@li @c fwk.desktop
|
||||||
|
@li @c fwk.dispatch
|
||||||
@li @c fwk.session
|
@li @c fwk.session
|
||||||
|
|
||||||
@section i18nlangtag
|
@section i18nlangtag
|
||||||
|
Reference in New Issue
Block a user