feat: renamed verbose to debug and improved the messages

This commit is contained in:
Simon Cornet 2025-03-05 10:37:47 +01:00
commit 7b5cb295ff
5 changed files with 35 additions and 36 deletions

View file

@ -27,16 +27,16 @@ func fetchRepositoriesGitlab() ([]Repository, error) {
url := fmt.Sprintf("https://%s/api/v4/projects?%s&%s&%s%s",
gitlabHost, membership, order, perpage, archived)
logPrint("Creating API request", nil)
logPrint("HTTP: Creating API request", nil)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, fmt.Errorf("ERROR: creating request: %v\n", err)
}
logPrint("Adding PRIVATE-TOKEN header to API request", nil)
logPrint("HTTP: Adding PRIVATE-TOKEN header to API request", nil)
req.Header.Set("PRIVATE-TOKEN", gitlabToken)
logPrint("Making request", nil)
logPrint("HTTP: Making request", nil)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
@ -48,7 +48,7 @@ func fetchRepositoriesGitlab() ([]Repository, error) {
return nil, fmt.Errorf("ERROR: API request failed with status: %d\n", resp.StatusCode)
}
logPrint("Decoding JSON response", nil)
logPrint("HTTP: Decoding JSON response", nil)
var repositories []Repository
if err := json.NewDecoder(resp.Body).Decode(&repositories); err != nil {
return nil, fmt.Errorf("ERROR: decoding response: %v\n", err)
@ -58,6 +58,6 @@ func fetchRepositoriesGitlab() ([]Repository, error) {
return repositories, fmt.Errorf("ERROR: no repositories found\n")
}
logPrint("Returning repositories found", nil)
logPrint("HTTP: Returning repositories found", nil)
return repositories, nil
}