diff options
author | Bob Arnson <bob@firegiant.com> | 2024-11-09 23:54:49 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2024-11-10 20:14:39 -0500 |
commit | 53d84c9b96b027df505ab99f3db0719a82108b2b (patch) | |
tree | c08a593a222641b7d1b615794c80094aab8588b8 /src/burn/engine/logging.cpp | |
parent | a75f23d32c3892e9977e7a48b4b347342ab182a9 (diff) | |
download | wix-53d84c9b96b027df505ab99f3db0719a82108b2b.tar.gz wix-53d84c9b96b027df505ab99f3db0719a82108b2b.tar.bz2 wix-53d84c9b96b027df505ab99f3db0719a82108b2b.zip |
Log bundle registration scope.
Diffstat (limited to 'src/burn/engine/logging.cpp')
-rw-r--r-- | src/burn/engine/logging.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/burn/engine/logging.cpp b/src/burn/engine/logging.cpp index 8a1f6510..60c16c01 100644 --- a/src/burn/engine/logging.cpp +++ b/src/burn/engine/logging.cpp | |||
@@ -959,6 +959,13 @@ extern "C" LPWSTR LoggingStringOrUnknownIfNull( | |||
959 | return wz ? wz : L"Unknown"; | 959 | return wz ? wz : L"Unknown"; |
960 | } | 960 | } |
961 | 961 | ||
962 | extern "C" LPCSTR LoggingInstallScopeToString( | ||
963 | __in BOOL fPerMachine | ||
964 | ) | ||
965 | { | ||
966 | return fPerMachine ? "PerMachine" : "PerUser"; | ||
967 | } | ||
968 | |||
962 | 969 | ||
963 | // internal function declarations | 970 | // internal function declarations |
964 | 971 | ||