diff options
Diffstat (limited to 'sal')
-rw-r--r-- | sal/rtl/bootstrap.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx index c93aa0c5ace9..cf5b9caf4e09 100644 --- a/sal/rtl/bootstrap.cxx +++ b/sal/rtl/bootstrap.cxx @@ -895,6 +895,7 @@ rtl::OUString expandMacros( Bootstrap_Impl const * file, rtl::OUString const & text, LookupMode mode, ExpandRequestLink const * requestStack) { + SAL_INFO("sal.bootstrap", "expandMacros called with: " << text); rtl::OUStringBuffer buf; for (sal_Int32 i = 0; i < text.getLength();) { bool escaped; @@ -1020,7 +1021,9 @@ rtl::OUString expandMacros( } } } - return buf.makeStringAndClear(); + OUString result(buf.makeStringAndClear()); + SAL_INFO("sal.bootstrap", "expandMacros result: " << result); + return result; } } |