Skip to content

Commit 3208a7b

Browse files
committed
adding print line on logs
1 parent 416c979 commit 3208a7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/lifecycle/logs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func (l *logs) write(data string, logType string) {
9191
logrus.Errorf("Error while writing logs: %s", err)
9292
}
9393
default:
94-
fmt.Printf(data)
94+
fmt.Println(data)
9595
if _, err := l.file.WriteString(data + "\n"); err != nil {
9696
logrus.Errorf("Error while writing logs: %s", err)
9797
}

0 commit comments

Comments
 (0)