mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
Fix inconsistency in doctor output (#19836)
* Fix inconsistency in doctor output - Use `logger.Info` instead of `logger.Warn` when no errors were found. * Update modules/doctor/fix16961.go Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
parent
40e87d031f
commit
0e516949a4
2 changed files with 10 additions and 4 deletions
|
@ -302,7 +302,11 @@ func fixBrokenRepoUnits16961(ctx context.Context, logger log.Logger, autofix boo
|
||||||
}
|
}
|
||||||
|
|
||||||
if !autofix {
|
if !autofix {
|
||||||
logger.Warn("Found %d broken repo_units", count)
|
if count == 0 {
|
||||||
|
logger.Info("Found no broken repo_units")
|
||||||
|
} else {
|
||||||
|
logger.Warn("Found %d broken repo_units", count)
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
logger.Info("Fixed %d broken repo_units", count)
|
logger.Info("Fixed %d broken repo_units", count)
|
||||||
|
|
|
@ -92,12 +92,14 @@ func checkPRMergeBase(ctx context.Context, logger log.Logger, autofix bool) erro
|
||||||
if autofix {
|
if autofix {
|
||||||
logger.Info("%d PR mergebases updated of %d PRs total in %d repos", numPRsUpdated, numPRs, numRepos)
|
logger.Info("%d PR mergebases updated of %d PRs total in %d repos", numPRsUpdated, numPRs, numRepos)
|
||||||
} else {
|
} else {
|
||||||
if numPRsUpdated > 0 && err == nil {
|
if numPRsUpdated == 0 {
|
||||||
|
logger.Info("All %d PRs in %d repos have a correct mergebase", numPRs, numRepos)
|
||||||
|
} else if err == nil {
|
||||||
logger.Critical("%d PRs with incorrect mergebases of %d PRs total in %d repos", numPRsUpdated, numPRs, numRepos)
|
logger.Critical("%d PRs with incorrect mergebases of %d PRs total in %d repos", numPRsUpdated, numPRs, numRepos)
|
||||||
return fmt.Errorf("%d PRs with incorrect mergebases of %d PRs total in %d repos", numPRsUpdated, numPRs, numRepos)
|
return fmt.Errorf("%d PRs with incorrect mergebases of %d PRs total in %d repos", numPRsUpdated, numPRs, numRepos)
|
||||||
|
} else {
|
||||||
|
logger.Warn("%d PRs with incorrect mergebases of %d PRs total in %d repos", numPRsUpdated, numPRs, numRepos)
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.Warn("%d PRs with incorrect mergebases of %d PRs total in %d repos", numPRsUpdated, numPRs, numRepos)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return err
|
return err
|
||||||
|
|
Loading…
Reference in a new issue