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()