From 6fe5725de825de9fe21e7697443eadd5fd6bafbf Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 12 Jun 2020 08:23:36 +0200 Subject: pkg/report: ingore another android debug output that looks like kernel crash --- pkg/report/linux.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index aae212062..7f65bf3bc 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1131,6 +1131,7 @@ var linuxOopses = append([]*oops{ compile("ODEBUG:"), // Android prints this sometimes during boot. compile("Boot_DEBUG:"), + compile("xlog_status:"), // Android ART debug output. compile("DEBUG:"), // pkg/host output in debug mode. -- cgit mrf-deployment