diff --git a/logger.go b/logger.go index 2c3f231..8ac5843 100644 --- a/logger.go +++ b/logger.go @@ -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 -