Remove debugging artifacts

This commit is contained in:
Thomas Roehl 2022-02-02 17:14:29 +01:00
parent e59852be03
commit 2806b1e7cc

View File

@ -243,9 +243,7 @@ func (m *LikwidCollector) getResponsiblities() map[MetricScope]map[int]int {
scopes := GetAllMetricScopes() scopes := GetAllMetricScopes()
complete := make(map[MetricScope]map[int]int) complete := make(map[MetricScope]map[int]int)
for _, s := range scopes { for _, s := range scopes {
cclog.Debug("Start ", s)
complete[s] = get_cpus(s) complete[s] = get_cpus(s)
cclog.Debug("End ", s)
} }
return complete return complete
} }