Browse Source

Merge pull request #117 from johanneswuerbach/fix-fatal

fix: fatal default log
pull/138/head
Lane Wagner 2 years ago
committed by GitHub
parent
commit
f6f2db89f5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      logger.go

+ 1
- 1
logger.go View File

@ -17,7 +17,7 @@ type stdDebugLogger struct{}
// Fatalf -
func (l stdDebugLogger) Fatalf(format string, v ...interface{}) {
log.Printf(fmt.Sprintf("%s FATAL: %s", loggingPrefix, format), v...)
log.Fatalf(fmt.Sprintf("%s FATAL: %s", loggingPrefix, format), v...)
}
// Errorf -


Loading…
Cancel
Save