diff --git a/main.go b/main.go index 0d45836fc4e24da37cf437341c4e0dfae4b01a48..786e88c8f398e3202e51d859d7e5566cc5ff4e5a 100644 --- a/main.go +++ b/main.go @@ -304,8 +304,9 @@ func upsertGitHubRepo(repo map[string]interface{}, mirrorConfigUsed MirrorDefini defer resp.Body.Close() if resp.StatusCode >= 400 { - body, _ := io.ReadAll(resp.Body) - return "", fmt.Errorf("GitHub API error: %s: %s", resp.Status, body) + respBody, _ := io.ReadAll(resp.Body) + reqBody, _ := io.ReadAll(req.Body) + return "", fmt.Errorf("GitHub API error: %s: %s: for request: %s", resp.Status, respBody, reqBody) } return path, nil