Skip to content

Commit

Permalink
Fix daemon pod log
Browse files Browse the repository at this point in the history
Some spaces were missing and the namespace should be before the pod name.
  • Loading branch information
sabinaaledort committed Jun 30, 2021
1 parent 442f97d commit 3fc531d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/daemon/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func New(
verbStr = "Evicted"
}
glog.Info(fmt.Sprintf("%s pod from Node", verbStr),
"pod", fmt.Sprintf("%s/%s", pod.Name, pod.Namespace))
" pod ", fmt.Sprintf("%s/%s", pod.Namespace, pod.Name))
},
Out: writer{glog.Info},
ErrOut: writer{glog.Error},
Expand Down

0 comments on commit 3fc531d

Please sign in to comment.