Skip to content

Commit cd18639

Browse files
committed
Add launch updater debug log
1 parent 6113438 commit cd18639

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

plugins/updater/src/updater.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,9 +844,11 @@ impl Update {
844844
|p| OsString::from(format!("{p}\\System32\\msiexec.exe")),
845845
),
846846
};
847-
let file = encode_wide(file);
848-
849847
let parameters = self.updater_parameters(&updater_type);
848+
849+
log::debug!("Executing updater {file:?} with parameters: {parameters:?}");
850+
851+
let file = encode_wide(file);
850852
let parameters = encode_wide(parameters);
851853

852854
unsafe {

0 commit comments

Comments
 (0)