Skip to content

Commit

Permalink
fix logging level on cgroups message
Browse files Browse the repository at this point in the history
  • Loading branch information
fearful-symmetry committed Aug 26, 2024
1 parent 5add74d commit 9db0a02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metric/system/cgroup/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ func (r *Reader) ProcessCgroupPaths(pid int) (PathList, error) {
logp.L().Debugf("cgroup for process %d contains a relative cgroup path (%s), but we were not able to find a root cgroup. Cgroup monitoring for this PID may be incomplete",
pid, path)
} else {
logp.L().Infof("using root mount %s and path %s", r.cgroupMountpoints.ContainerizedRootMount, path)
logp.L().Debugf("using root mount %s and path %s", r.cgroupMountpoints.ContainerizedRootMount, path)
path = filepath.Join(r.cgroupMountpoints.ContainerizedRootMount, path)
}
}
Expand Down

0 comments on commit 9db0a02

Please sign in to comment.