Skip to content

Commit 887b8da

Browse files
authored
fix(bundler): improve log format of sign command stdout (#13947)
1 parent 7d21e3b commit 887b8da

File tree

1 file changed

+2
-2
lines changed
  • crates/tauri-bundler/src/bundle/windows

1 file changed

+2
-2
lines changed

crates/tauri-bundler/src/bundle/windows/sign.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ pub fn sign_custom<P: AsRef<Path>>(
214214
let output = cmd.output_ok()?;
215215

216216
let stdout = String::from_utf8_lossy(output.stdout.as_slice()).into_owned();
217-
log::info!("{:?}", stdout);
217+
log::info!(action = "Signing";"Output of signing command:\n{}", stdout.trim());
218218

219219
Ok(())
220220
}
@@ -233,7 +233,7 @@ pub fn sign_default<P: AsRef<Path>>(path: P, params: &SignParams) -> crate::Resu
233233
let output = cmd.output_ok()?;
234234

235235
let stdout = String::from_utf8_lossy(output.stdout.as_slice()).into_owned();
236-
log::info!("{:?}", stdout);
236+
log::info!(action = "Signing";"Output of signing command:\n{}", stdout.trim());
237237

238238
Ok(())
239239
}

0 commit comments

Comments
 (0)