From 0d3d54992104288e9ee0c834d0b96e8502fd2d42 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 11 Jan 2024 18:26:20 -0800 Subject: Move the BootstrapperApplication out of proc --- src/burn/engine/logging.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/burn/engine/logging.cpp') diff --git a/src/burn/engine/logging.cpp b/src/burn/engine/logging.cpp index 630598ae..f381193f 100644 --- a/src/burn/engine/logging.cpp +++ b/src/burn/engine/logging.cpp @@ -74,9 +74,6 @@ extern "C" HRESULT LoggingOpen( switch (pInternalCommand->mode) { - case BURN_MODE_UNTRUSTED: - wzPostfix = L".cleanroom"; - break; case BURN_MODE_ELEVATED: wzPostfix = L".elevated"; break; @@ -1014,7 +1011,7 @@ static HRESULT InitializeLogging( // The untrusted process needs a separate log file. // TODO: Burn crashes if they do try to use the same log file. - if (pInternalCommand->sczLogFile && BURN_MODE_UNTRUSTED != pInternalCommand->mode) + if (pInternalCommand->sczLogFile) { hr = StrAllocString(&pLog->sczPath, pInternalCommand->sczLogFile, 0); ExitOnFailure(hr, "Failed to copy log file path from command line."); -- cgit v1.2.3-55-g6feb