diff options
Diffstat (limited to 'src/burn/engine/bundlepackageengine.cpp')
-rw-r--r-- | src/burn/engine/bundlepackageengine.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/burn/engine/bundlepackageengine.cpp b/src/burn/engine/bundlepackageengine.cpp index 61911fb4..d3f59e5d 100644 --- a/src/burn/engine/bundlepackageengine.cpp +++ b/src/burn/engine/bundlepackageengine.cpp | |||
@@ -1000,6 +1000,9 @@ static HRESULT ExecuteBundle( | |||
1000 | ExitOnFailure(hr, "Failed to allocate obfuscated bundle command."); | 1000 | ExitOnFailure(hr, "Failed to allocate obfuscated bundle command."); |
1001 | } | 1001 | } |
1002 | 1002 | ||
1003 | // Append logging to command line if it doesn't contain '-log' | ||
1004 | CoreAppendLogToCommandLine(&sczBaseCommand, &sczCommandObfuscated, fRollback, pVariables, pPackage); | ||
1005 | |||
1003 | // Log obfuscated command, which won't include raw hidden variable values or protocol specific arguments to avoid exposing secrets. | 1006 | // Log obfuscated command, which won't include raw hidden variable values or protocol specific arguments to avoid exposing secrets. |
1004 | LogId(REPORT_STANDARD, MSG_APPLYING_PACKAGE, LoggingRollbackOrExecute(fRollback), pPackage->sczId, LoggingActionStateToString(action), sczExecutablePath, sczCommandObfuscated ? sczCommandObfuscated : sczBaseCommand); | 1007 | LogId(REPORT_STANDARD, MSG_APPLYING_PACKAGE, LoggingRollbackOrExecute(fRollback), pPackage->sczId, LoggingActionStateToString(action), sczExecutablePath, sczCommandObfuscated ? sczCommandObfuscated : sczBaseCommand); |
1005 | 1008 | ||