Skip to content

Commit

Permalink
Fix error displayed in the same line than log during dev env build
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylevy committed May 31, 2022
1 parent b9bb26f commit cab2f6d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/features/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@ func (s StartOutputHandler) HandleOutput(output features.StartOutput) error {
uncompletedLogLineBuf = bytes.Buffer{}
}

if err != nil && hasUncompletedLogLine {
s.logger.Log("")
}

if err == io.EOF {
break
}
Expand Down

0 comments on commit cab2f6d

Please # to comment.