diff options
author | ektagoel12 <ektagoel12july@gmail.com> | 2023-03-13 19:51:25 +0530 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2023-03-18 16:39:34 +0000 |
commit | 307b1cc494c51c802882ae23029e33a72d57f2a3 (patch) | |
tree | 14c665271a60b0d5de1da4c5154b15c79ebd161c /bridges/source | |
parent | c8fc36154e1933bb3d9e2a549b7ab4d4e5e46c75 (diff) |
tdf#130924 replace debugging fprintf calls with SAL_INFO/SAL_WARN
Change-Id: I1893e130af2584c1d57c3e37ee3f3ff18c07c077
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148792
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'bridges/source')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_sparc64/cpp2uno.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_sparc64/cpp2uno.cxx b/bridges/source/cpp_uno/gcc3_linux_sparc64/cpp2uno.cxx index f455be45dc88..11d60fdeab44 100644 --- a/bridges/source/cpp_uno/gcc3_linux_sparc64/cpp2uno.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_sparc64/cpp2uno.cxx @@ -369,10 +369,8 @@ static typelib_TypeClass cpp_mediate( TypeDescription aMemberDescr( pTypeDescr->ppAllMembers[nMemberPos] ); -#if defined BRIDGES_DEBUG OString cstr( OUStringToOString( aMemberDescr.get()->pTypeName, RTL_TEXTENCODING_ASCII_US ) ); - fprintf( stderr, "calling %s, nFunctionIndex=%d\n", cstr.getStr(), nFunctionIndex ); -#endif + SAL_WARN("bridges", "calling " << cstr.getStr() << ", nFunctionIndex=" << nFunctionIndex); typelib_TypeClass eRet; switch (aMemberDescr.get()->eTypeClass) |