diff options
| author | Rob Mensching <rob@firegiant.com> | 2024-01-11 18:26:20 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2024-03-06 18:03:38 -0800 |
| commit | 0d3d54992104288e9ee0c834d0b96e8502fd2d42 (patch) | |
| tree | 9efa49c4983cd2ba1becab64bd1f2faccac88acf /src/burn/engine/logging.cpp | |
| parent | 2824298d9dd817a47527c920363556b54ead5d5d (diff) | |
| download | wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.gz wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.bz2 wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.zip | |
Move the BootstrapperApplication out of proc
Diffstat (limited to '')
| -rw-r--r-- | src/burn/engine/logging.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
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( | |||
| 74 | 74 | ||
| 75 | switch (pInternalCommand->mode) | 75 | switch (pInternalCommand->mode) |
| 76 | { | 76 | { |
| 77 | case BURN_MODE_UNTRUSTED: | ||
| 78 | wzPostfix = L".cleanroom"; | ||
| 79 | break; | ||
| 80 | case BURN_MODE_ELEVATED: | 77 | case BURN_MODE_ELEVATED: |
| 81 | wzPostfix = L".elevated"; | 78 | wzPostfix = L".elevated"; |
| 82 | break; | 79 | break; |
| @@ -1014,7 +1011,7 @@ static HRESULT InitializeLogging( | |||
| 1014 | 1011 | ||
| 1015 | // The untrusted process needs a separate log file. | 1012 | // The untrusted process needs a separate log file. |
| 1016 | // TODO: Burn crashes if they do try to use the same log file. | 1013 | // TODO: Burn crashes if they do try to use the same log file. |
| 1017 | if (pInternalCommand->sczLogFile && BURN_MODE_UNTRUSTED != pInternalCommand->mode) | 1014 | if (pInternalCommand->sczLogFile) |
| 1018 | { | 1015 | { |
| 1019 | hr = StrAllocString(&pLog->sczPath, pInternalCommand->sczLogFile, 0); | 1016 | hr = StrAllocString(&pLog->sczPath, pInternalCommand->sczLogFile, 0); |
| 1020 | ExitOnFailure(hr, "Failed to copy log file path from command line."); | 1017 | ExitOnFailure(hr, "Failed to copy log file path from command line."); |
