From 342feda2bf7113744e61c5e7843e64ab9c99d85c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 6 Jan 2018 14:54:09 +0100 Subject: pkg/report: don't treat CONFIG_DEBUG_OBJECTS debug output as bugs --- pkg/report/linux.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 4f3a76dda..9b3ab4340 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -590,6 +590,8 @@ var linuxOopses = []*oops{ }, }, []*regexp.Regexp{ + // CONFIG_DEBUG_OBJECTS output. + compile("ODEBUG:"), // Android prints this sometimes during boot. compile("Boot_DEBUG:"), }, -- cgit mrf-deployment