Skip to content

Commit ef4303e

Browse files
author
Aaron Schlesinger
committed
fix(log.go): make logging info prefix the same as what slugbuilder outputs
1 parent 3ac4e48 commit ef4303e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/log/log.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func Err(format string, v ...interface{}) {
4040

4141
// Info prints a green-tinted message.
4242
func Info(format string, v ...interface{}) {
43-
fmt.Fprint(Stdout, "---> ")
43+
fmt.Fprint(Stdout, "-----> ")
4444
fmt.Fprintf(Stdout, appendNewLine(format), v...)
4545
}
4646

0 commit comments

Comments
 (0)