From 869790f218e8cbefad33ad09855da1a03fd8d3f9 Mon Sep 17 00:00:00 2001 From: Gibson Fahnestock Date: Sat, 20 Nov 2021 19:28:44 +0000 Subject: [PATCH] Fix stdout->stderr typo in cred.rs --- src/cred.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cred.rs b/src/cred.rs index ee686f123c..fdffd61540 100644 --- a/src/cred.rs +++ b/src/cred.rs @@ -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)