We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0305f6 commit 14f2c99Copy full SHA for 14f2c99
1 file changed
tsunami/build/build.go
@@ -709,7 +709,7 @@ func monitorAndOpenBrowser(stdout io.ReadCloser, verbose bool) {
709
for scanner.Scan() {
710
line := scanner.Text()
711
if verbose {
712
- log.Println(line)
+ fmt.Println(line)
713
}
714
715
if !browserOpened && len(urlRegex.FindStringSubmatch(line)) > 1 {
@@ -726,7 +726,7 @@ func monitorAndOpenBrowser(stdout io.ReadCloser, verbose bool) {
726
// Continue reading and printing output if verbose
727
728
729
- log.Println(scanner.Text())
+ fmt.Println(scanner.Text())
730
731
732
0 commit comments