Skip to content

Commit 14f2c99

Browse files
committed
fix double timestamps
1 parent f0305f6 commit 14f2c99

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tsunami/build/build.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ func monitorAndOpenBrowser(stdout io.ReadCloser, verbose bool) {
709709
for scanner.Scan() {
710710
line := scanner.Text()
711711
if verbose {
712-
log.Println(line)
712+
fmt.Println(line)
713713
}
714714

715715
if !browserOpened && len(urlRegex.FindStringSubmatch(line)) > 1 {
@@ -726,7 +726,7 @@ func monitorAndOpenBrowser(stdout io.ReadCloser, verbose bool) {
726726
// Continue reading and printing output if verbose
727727
if verbose {
728728
for scanner.Scan() {
729-
log.Println(scanner.Text())
729+
fmt.Println(scanner.Text())
730730
}
731731
}
732732
}

0 commit comments

Comments
 (0)