Skip to content

Commit

Permalink
Merge pull request #771 from gibfahn/log_typo
Browse files Browse the repository at this point in the history
Fix stdout->stderr typo in cred.rs
  • Loading branch information
ehuss committed Nov 20, 2021
2 parents 6f3905d + 869790f commit 4760c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cred.rs
Expand Up @@ -427,7 +427,7 @@ impl CredentialHelper {
let output = my_try!(p.wait_with_output());
if !output.status.success() {
debug!(
"credential helper failed: {}\nstdout ---\n{}\nstdout ---\n{}",
"credential helper failed: {}\nstdout ---\n{}\nstderr ---\n{}",
output.status,
String::from_utf8_lossy(&output.stdout),
String::from_utf8_lossy(&output.stderr)
Expand Down

0 comments on commit 4760c18

Please sign in to comment.