Skip to content

Commit

Permalink
Fix leftover log level (#1194)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrsMark authored Sep 14, 2022
1 parent 332d08d commit 8b711f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/pkg/composable/providers/kubernetes/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ func (p *pod) emitRunning(pod *kubernetes.Pod) {
annotations, _ := ann.(mapstr.M)
hints := utils.GenerateHints(annotations, "", p.config.Prefix)
if len(hints) > 0 {
p.logger.Errorf("Extracted hints are :%v", hints)
p.logger.Debugf("Extracted hints are :%v", hints)
hintsMapping := GenerateHintsMapping(hints, data.mapping, p.logger, "")
p.logger.Errorf("Generated hints mappings are :%v", hintsMapping)
p.logger.Debugf("Generated hints mappings are :%v", hintsMapping)
_ = p.comm.AddOrUpdate(
data.uid,
PodPriority,
Expand Down

0 comments on commit 8b711f3

Please sign in to comment.