configmgr/source/winreg.cxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit 0b1d3f2858b6d0652be8e71b60a497d4b4d2dab7
Author:     Stephan Bergmann <stephan.bergm...@collabora.com>
AuthorDate: Fri Aug 8 12:59:04 2025 +0200
Commit:     Stephan Bergmann <stephan.bergm...@collabora.com>
CommitDate: Fri Aug 8 16:26:51 2025 +0200

    Log configmgr data read from Windows Registry
    
    Change-Id: I034bf988d1b9a165ace56a6dd94f1a61ff6633c4
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/189184
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <stephan.bergm...@collabora.com>

diff --git a/configmgr/source/winreg.cxx b/configmgr/source/winreg.cxx
index 0e90752d4d6d..44e9a09485fa 100644
--- a/configmgr/source/winreg.cxx
+++ b/configmgr/source/winreg.cxx
@@ -193,6 +193,11 @@ void dumpWindowsRegistryKey(HKEY hKey, OUString const & 
aKeyName, TempFile &aFil
                 else if (!wcscmp(pValueName.get(), L"ExternalBackend"))
                     aExternalBackend = o3tl::toU(pValue.get());
             }
+            SAL_INFO(
+                "configmgr",
+                "winreg \"" << aKeyName << "\": value=\"" << aValue << "\" 
type=\"" << aType
+                << "\" final=" << bFinal << " nil=" << bNil << " ext=" << 
bExternal
+                << "\" extback=\"" << aExternalBackend << "\"");
             if (bExternal)
             {
                 // type and external are mutually exclusive

Reply via email to