From def570fb990a133d6daef214fde7805793df4594 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 9 Apr 2018 15:35:40 +0300 Subject: A few SAL_INFO tweaks Change-Id: I4a9c6341891bc80d8ab7648ed972d57739aa4f4a (cherry picked from commit b34d42129178731a841c52aac186f5d9f4fa817e) --- extensions/source/ole/unoobjw.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'extensions') 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; -- cgit