Fatal is equivalent to log.Print, but prefixed with "[FATAL] ", and calling os.Exit(1).
(v ...any)
| 88 | // Fatal is equivalent to log.Print, but prefixed with "[FATAL] ", and calling |
| 89 | // os.Exit(1). |
| 90 | func Fatal(v ...any) { log(fatal, v...); os.Exit(1) } |
| 91 | |
| 92 | // Fatalf is equivalent to log.Printf, but prefixed with "[FATAL] ", and calling |
| 93 | // os.Exit(1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…