Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/docker/docker_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ func (c *DockerCommand) exec(ctx context.Context, in io.Reader, outw, errw io.Wr
util.NewRingBufferWriter(&stderrBuf, 1024),
), stderrpty)
if err != nil {
console.Errorf("failed to copy stderr pty to errw: %s", err)
console.Debugf("failed to copy stderr pty to errw: %s", err)
}
}()
} else {
Expand All @@ -425,7 +425,7 @@ func (c *DockerCommand) exec(ctx context.Context, in io.Reader, outw, errw io.Wr

_, err = io.Copy(outw, outpipe)
if err != nil {
console.Errorf("failed to copy stdout to outw: %s", err)
console.Debugf("failed to copy stdout to outw: %s", err)
}
}()

Expand Down