Skip to content

Commit

Permalink
fix: fixed wrongly passing slice but not arguments to Println
Browse files Browse the repository at this point in the history
  • Loading branch information
aeof committed Jun 21, 2024
1 parent 37d85b7 commit c46b798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ var Verbose bool

func LogVerbose(msg ...any) {
if Verbose {
fmt.Println(msg)
fmt.Println(msg...)
}
}

0 comments on commit c46b798

Please sign in to comment.