From e0375d3ee6513d1f62873c119bc2860ba8adab07 Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Fri, 1 Dec 2017 15:44:26 +0100 Subject: pkg/report: return raw log in Report.Output --- pkg/report/linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 8d96c3903..c64a087e8 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -81,7 +81,7 @@ func (ctx *linux) ContainsCrash(output []byte) bool { func (ctx *linux) Parse(output []byte) *Report { rep := &Report{ - Output: ctx.extractConsoleOutput(output), + Output: output, } var oops *oops var textPrefix [][]byte -- cgit mrf-deployment