vcl/source/gdi/embeddedfontsafdko.cxx |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit c61da44f5aa0ed1a8cfc0f94684f2bf88c6d7dd0
Author:     Caolán McNamara <[email protected]>
AuthorDate: Tue Oct 14 11:31:52 2025 +0100
Commit:     Miklos Vajna <[email protected]>
CommitDate: Tue Oct 14 15:26:58 2025 +0200

    log tx dump equivalent command for debugging
    
    Change-Id: I9ba2dfe19759ad6dca080ff853bbb6e784473dc6
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/192385
    Reviewed-by: Miklos Vajna <[email protected]>
    Tested-by: Jenkins CollaboraOffice <[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);

Reply via email to