From c961def6193b8311808324cb0cdc3b3fea586f73 Mon Sep 17 00:00:00 2001 From: Stephen Thorne Date: Thu, 19 Jun 2025 02:10:13 -0700 Subject: [PATCH] Internal change. PiperOrigin-RevId: 773260053 --- pkg/sentry/fsimpl/proc/task_net.go | 2 +- pkg/sentry/watchdog/watchdog.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/sentry/fsimpl/proc/task_net.go b/pkg/sentry/fsimpl/proc/task_net.go index 0794992eec..337af04f35 100644 --- a/pkg/sentry/fsimpl/proc/task_net.go +++ b/pkg/sentry/fsimpl/proc/task_net.go @@ -687,7 +687,7 @@ func (d *netSnmpData) Generate(ctx context.Context, buf *bytes.Buffer) error { } if err := d.stack.Statistics(stat, line.prefix); err != nil { if linuxerr.Equals(linuxerr.EOPNOTSUPP, err) { - log.Infof("Failed to retrieve %s of /proc/net/snmp: %v", line.prefix, err) + log.Debugf("Failed to retrieve %s of /proc/net/snmp: %v", line.prefix, err) } else { log.Warningf("Failed to retrieve %s of /proc/net/snmp: %v", line.prefix, err) } diff --git a/pkg/sentry/watchdog/watchdog.go b/pkg/sentry/watchdog/watchdog.go index ffcef09dfe..a38d7ed022 100644 --- a/pkg/sentry/watchdog/watchdog.go +++ b/pkg/sentry/watchdog/watchdog.go @@ -291,7 +291,7 @@ func (w *Watchdog) runTurn() { } w.lastRun = now - log.Infof("Watchdog starting loop, tasks: %d, discount: %v", len(tasks), discount) + log.Debugf("Watchdog starting loop, tasks: %d, discount: %v", len(tasks), discount) for _, t := range tasks { // An offender is a task running inside the kernel for longer than the specified timeout. tstate, lastUpdateTime := t.TaskGoroutineStateTime()