Browse Source

fix: fatal default log

pull/117/head
Johannes Würbach 3 years ago
parent
commit
161a8184df
No known key found for this signature in database GPG Key ID: 74DB0F4D956CCCE3
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