aboutsummaryrefslogtreecommitdiffstats
path: root/vm
diff options
context:
space:
mode:
Diffstat (limited to 'vm')
-rw-r--r--vm/starnix/starnix.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/starnix/starnix.go b/vm/starnix/starnix.go
index 88c0cb3b9..2876d42f9 100644
--- a/vm/starnix/starnix.go
+++ b/vm/starnix/starnix.go
@@ -241,7 +241,8 @@ func (inst *instance) startFuchsiaLogs() error {
// trigger a false positive from the unexpected reboot check. To avoid this,
// only request logs from now on.
cmd := inst.ffxCommand("--target", inst.name, "log", "--since", "now",
- "--show-metadata", "--show-full-moniker", "--no-color")
+ "--show-metadata", "--show-full-moniker", "--no-color",
+ "--exclude-tags", "netlink")
cmd.Stdout = inst.wpipe
cmd.Stderr = inst.wpipe
inst.merger.Add("fuchsia", inst.rpipe)