aboutsummaryrefslogtreecommitdiff
path: root/src/burn
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2023-05-18 20:47:27 -0400
committerRob Mensching <rob@firegiant.com>2023-06-13 10:36:32 -0700
commit35d30e03027cef5c402f01d671fc1883514e77a9 (patch)
tree5c48b8bb7f2b70b6157327d604d4812ad5b48649 /src/burn
parentf4740666c9eb2512640b7c69c79447ef8e7daa8e (diff)
downloadwix-35d30e03027cef5c402f01d671fc1883514e77a9.tar.gz
wix-35d30e03027cef5c402f01d671fc1883514e77a9.tar.bz2
wix-35d30e03027cef5c402f01d671fc1883514e77a9.zip
Improve logging to remove `(null)`.
Add detached container runtime test. Inspired by https://github.com/wixtoolset/issues/issues/7490.
Diffstat (limited to 'src/burn')
-rw-r--r--src/burn/engine/apply.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/apply.cpp b/src/burn/engine/apply.cpp
index 9a1a7bf9..f3b05cf8 100644
--- a/src/burn/engine/apply.cpp
+++ b/src/burn/engine/apply.cpp
@@ -1798,7 +1798,7 @@ static HRESULT AcquireContainerOrPayload(
1798 1798
1799 break; 1799 break;
1800 default: 1800 default:
1801 LogExitWithRootFailure(hr, E_FILENOTFOUND, MSG_RESOLVE_SOURCE_FAILED, "Failed to resolve source, payload: %ls, package: %ls, container: %ls", wzPayloadId, pPackage ? pPackage->sczId : NULL, pContainer ? pContainer->sczId : NULL); 1801 LogExitWithRootFailure(hr, E_FILENOTFOUND, MSG_RESOLVE_SOURCE_FAILED, "Failed to resolve source, payload: %ls, package: %ls, container: %ls", wzPayloadId ? wzPayloadId : L"n/a", pPackage ? pPackage->sczId : L"n/a", pContainer ? pContainer->sczId : L"n/a");
1802 } 1802 }
1803 1803
1804 // Send 100% complete here. This is sometimes the only progress sent to the BA. 1804 // Send 100% complete here. This is sometimes the only progress sent to the BA.