We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6f6a7e commit b417d2dCopy full SHA for b417d2d
src/auth/github.rs
@@ -81,8 +81,9 @@ impl GithubClient {
81
82
if !res.status().is_success() {
83
log::error!(
84
- "GitHub OAuth device flow start request failed with code {}",
85
- res.status()
+ "GitHub OAuth device flow failed to start. Error code: {}. Body: {}",
+ res.status(),
86
+ res.text().await.unwrap_or("No body received".into())
87
);
88
return Err(ApiError::InternalError);
89
}
0 commit comments