File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/tauri-bundler/src/bundle/windows Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ pub fn sign_custom<P: AsRef<Path>>(
214
214
let output = cmd. output_ok ( ) ?;
215
215
216
216
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 ( ) ) ;
218
218
219
219
Ok ( ( ) )
220
220
}
@@ -233,7 +233,7 @@ pub fn sign_default<P: AsRef<Path>>(path: P, params: &SignParams) -> crate::Resu
233
233
let output = cmd. output_ok ( ) ?;
234
234
235
235
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 ( ) ) ;
237
237
238
238
Ok ( ( ) )
239
239
}
You can’t perform that action at this time.
0 commit comments