diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-01-24 16:40:53 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-01-24 17:58:22 +0200 |
commit | 24386ce4e3903cbbc235eb7e1dacb1a5326e966e (patch) | |
tree | bd5e51dce0604a6b2184f8be46767f0271880902 | |
parent | f3f77f5562b24591e25750eacd5baf676a84c243 (diff) |
Log what we are about to "load" in the DISABLE_DYNLOADING case
Change-Id: I75b9511e82d57da453527e7bc497ec1523ab2216
-rw-r--r-- | cppuhelper/source/shlib.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index 2d1d1df2f6ba..9218581ff005 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -186,6 +186,7 @@ void cppuhelper::detail::loadSharedLibComponentFactory( std::abort();//TODO } rtl::OUString name(prefix == "direct" ? implementation : uri); + SAL_INFO("cppuhelper.shlib", "prefix=" << prefix << " implementation=" << implementation << " uri=" << uri); lib_to_factory_mapping const * map = lo_get_factory_map(); component_getFactoryFunc fp = 0; for (int i = 0; map[i].name != 0; ++i) { @@ -205,6 +206,7 @@ void cppuhelper::detail::loadSharedLibComponentFactory( getEnvironment(environment, implementation), fp, uri, implementation, serviceManager); } else { + SAL_INFO("cppuhelper.shlib", "constructor=" << constructor); lib_to_constructor_mapping const * map = lo_get_constructor_map(); for (int i = 0; map[i].name != 0; ++i) { if (constructor.equalsAscii(map[i].name)) { |