This commit is contained in:
6543 2022-11-07 23:01:31 +01:00
parent a03ea956d5
commit 218b52094e
No known key found for this signature in database
GPG key ID: B8BE6D610E61C862
3 changed files with 5 additions and 4 deletions

View file

@ -18,7 +18,7 @@ func GetBranchTimestamp(giteaClient *gitea.Client, owner, repo, branch string) *
log.Err(err).Msg("Could't fetch default branch from repository")
return nil
}
log.Debug().Msgf("found default branch: %s", defaultBranch)
log.Debug().Msgf("Succesfully fetched default branch '%s' from Gitea", defaultBranch)
branch = defaultBranch
}