summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-05-02 14:48:22 +0300
committerTor Lillqvist <tml@collabora.com>2018-05-31 15:46:25 +0300
commitad57e6d3369b10c181cb644729466512428cc52d (patch)
tree425927c2d0dd0181f2c66f5316944eab6d74b066 /extensions
parentf9365c47c2e77bb939ef712ee9cc8ba46f7d1931 (diff)
Add a SAL_INFO
Change-Id: Ic197a9573968fb252cb52cc5089f9140d5375d3a
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/ole/unoobjw.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx
index fb86cee88821..a9c579e1fc23 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -2272,6 +2272,8 @@ Sink::Call( const OUString& Method, Sequence< Any >& Arguments )
// have done "compile-time binding" and where the sink would actually be an object with
// a vtbl corresponding to the outgoing interface. Late binding clients that work like
// VBScript is all we support.
+ SAL_INFO("extensions.olebridge", "Sink::Call(" << Method << "): Calling Invoke(" << nMemId << ")");
+
nResult = pDispatch->Invoke(nMemId, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &aDispParams, &aVarResult, NULL, &uArgErr);
SAL_WARN_IF(!SUCCEEDED(nResult), "extensions.olebridge", "Call to " << Method << " failed: " << WindowsErrorStringFromHRESULT(nResult));