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 22:00:04 +0300
commit45fe2979e86828ec7ad13445e2a521c247772a49 (patch)
tree11d1e961a52d9ab4c18dc69dcc0435668a771be0 /extensions
parentdb1e3cb11657009fc476116bb403351bf6fc0013 (diff)
Add a SAL_INFO
Change-Id: Ic197a9573968fb252cb52cc5089f9140d5375d3a (cherry picked from commit ad57e6d3369b10c181cb644729466512428cc52d)
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 190623f56e76..ac6873be9300 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));