Skip to content

Commit 2c0b7e7

Browse files
jerubgvisor-bot
authored andcommitted
Internal change.
PiperOrigin-RevId: 775122796
1 parent ccbefce commit 2c0b7e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/sentry/fsimpl/proc/task_net.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ func (d *netSnmpData) Generate(ctx context.Context, buf *bytes.Buffer) error {
687687
}
688688
if err := d.stack.Statistics(stat, line.prefix); err != nil {
689689
if linuxerr.Equals(linuxerr.EOPNOTSUPP, err) {
690-
log.Infof("Failed to retrieve %s of /proc/net/snmp: %v", line.prefix, err)
690+
log.Debugf("Failed to retrieve %s of /proc/net/snmp: %v", line.prefix, err)
691691
} else {
692692
log.Warningf("Failed to retrieve %s of /proc/net/snmp: %v", line.prefix, err)
693693
}

pkg/sentry/watchdog/watchdog.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ func (w *Watchdog) runTurn() {
291291
}
292292
w.lastRun = now
293293

294-
log.Infof("Watchdog starting loop, tasks: %d, discount: %v", len(tasks), discount)
294+
log.Debugf("Watchdog starting loop, tasks: %d, discount: %v", len(tasks), discount)
295295
for _, t := range tasks {
296296
// An offender is a task running inside the kernel for longer than the specified timeout.
297297
tstate, lastUpdateTime := t.TaskGoroutineStateTime()

0 commit comments

Comments
 (0)