Skip to content

Commit

Permalink
fixe fatalf logger (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToniRamirezM authored Oct 13, 2023
1 parent 4e12afa commit 9e2821c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ func Warnf(template string, args ...interface{}) {
// Fatalf calls log.Fatalf on the root Logger.
func Fatalf(template string, args ...interface{}) {
args = appendStackTraceMaybeArgs(args)
getDefaultLog().Fatalf(template+" %s", args...)
getDefaultLog().Fatalf(template, args...)
}

// Errorf calls log.Errorf on the root logger and stores the error message into
Expand Down

0 comments on commit 9e2821c

Please sign in to comment.