summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-04-09 15:35:40 +0300
committerTor Lillqvist <tml@collabora.com>2018-05-31 21:48:33 +0300
commitdef570fb990a133d6daef214fde7805793df4594 (patch)
tree3d47dae6cfa5c1ec1dce8e38df566e13bbd7fc25 /extensions
parent04215e56ed322983333a1d265f7ee7ff10258ba1 (diff)
A few SAL_INFO tweaks
Change-Id: I4a9c6341891bc80d8ab7648ed972d57739aa4f4a (cherry picked from commit b34d42129178731a841c52aac186f5d9f4fa817e)
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/ole/unoobjw.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx
index d416cc726138..ecaba99d1e13 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -792,7 +792,7 @@ HRESULT STDMETHODCALLTYPE CXTypeInfo::GetNames(MEMBERID memid,
UINT cMaxNames,
UINT *pcNames)
{
- SAL_WARN("extensions.olebridge", "CXTypeInfo@" << this << "::GetNames(" << memid << ")");
+ SAL_INFO("extensions.olebridge", "CXTypeInfo@" << this << "::GetNames(" << memid << ")");
assert(meKind != Kind::COCLASS);
if (!rgBstrNames)
@@ -827,6 +827,7 @@ HRESULT STDMETHODCALLTYPE CXTypeInfo::GetNames(MEMBERID memid,
if (memid > aMethods.getLength() - 3)
return E_INVALIDARG;
+ SAL_INFO("extensions.olebridge", "...CXTypeInfo@" << this << "::GetNames(" << memid << "): " << aMethods[memid + 2]->getName());
rgBstrNames[0] = SysAllocString((LPOLESTR) aMethods[memid + 2]->getName().pData->buffer);
*pcNames = 1;