send stderr to the main view as well

This commit is contained in:
Jesse Duffield 2019-06-03 11:32:48 +10:00
parent 02b735e011
commit 1ed796eb32

View file

@ -151,6 +151,7 @@ func (gui *Gui) renderLogsForRegularContainer(mainView *gocui.View, container *c
cmd = gui.OSCommand.RunCustomCommand("docker logs --since=60m --timestamps --follow " + container.ID)
cmd.Stdout = mainView
cmd.Stderr = mainView
go gui.runProcessWithLock(cmd)