vcl/source/gdi/embeddedfontsafdko.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
New commits: commit b76a3584e27d57e66349f34e22b87e211a961db3 Author: Caolán McNamara <[email protected]> AuthorDate: Tue Oct 14 11:31:52 2025 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Wed Oct 15 11:41:54 2025 +0200 log tx dump equivalent command for debugging Change-Id: I9ba2dfe19759ad6dca080ff853bbb6e784473dc6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/192381 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/vcl/source/gdi/embeddedfontsafdko.cxx b/vcl/source/gdi/embeddedfontsafdko.cxx index 36cc6447d274..618006122efb 100644 --- a/vcl/source/gdi/embeddedfontsafdko.cxx +++ b/vcl/source/gdi/embeddedfontsafdko.cxx @@ -80,8 +80,11 @@ bool EmbeddedFontsManager::tx_dump(const OUString& srcFontUrl, const OUString& d return false; OString srcFontPathA(srcFontPath.toUtf8()); - h->src.stm.filename = const_cast<char*>(srcFontPathA.getStr()); OString destFilePathA(destFilePath.toUtf8()); + + SAL_INFO("vcl.fonts", "tx -dump " << srcFontPathA << " " << destFilePathA); + + h->src.stm.filename = const_cast<char*>(srcFontPathA.getStr()); h->dst.stm.filename = const_cast<char*>(destFilePathA.getStr()); bool result = convertTx(h); txFree(h);
