| @@ -50,7 +50,7 @@ func RepoStatisticDaily(date string) { | |||||
| var maxRepoRadar models.RepoStatistic | var maxRepoRadar models.RepoStatistic | ||||
| for i, repo := range repos { | for i, repo := range repos { | ||||
| log.Info("start statistic: %s", repo.Name) | |||||
| log.Info("start statistic: %s", getDistinctProjectName(repo)) | |||||
| var numDevMonths, numWikiViews, numContributor, numKeyContributor, numCommitsGrowth, numCommitLinesGrowth, numContributorsGrowth int64 | var numDevMonths, numWikiViews, numContributor, numKeyContributor, numCommitsGrowth, numCommitLinesGrowth, numContributorsGrowth int64 | ||||
| repoGitStat, err := models.GetRepoKPIStats(repo) | repoGitStat, err := models.GetRepoKPIStats(repo) | ||||
| if err != nil { | if err != nil { | ||||
| @@ -232,7 +232,7 @@ func RepoStatisticDaily(date string) { | |||||
| } | } | ||||
| log.Info("finish statistic: %s", repo.Name) | |||||
| log.Info("finish statistic: %s", getDistinctProjectName(repo)) | |||||
| } | } | ||||
| //radar map | //radar map | ||||