diff options
Diffstat (limited to 'src/burn/engine/logging.cpp')
-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."); |