diff options
| author | Andrey Konovalov <andreyknvl@google.com> | 2017-12-01 15:44:26 +0100 |
|---|---|---|
| committer | Andrey Konovalov <andreyknvl@gmail.com> | 2017-12-01 16:16:28 +0100 |
| commit | e0375d3ee6513d1f62873c119bc2860ba8adab07 (patch) | |
| tree | deaacda4d89f1d95c5b2c033772d93340979661c /pkg/report/linux.go | |
| parent | a6f9669d26a1d27d8486d6b5d1c383cf56494001 (diff) | |
pkg/report: return raw log in Report.Output
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
