MCPcopy
hub / github.com/gofiber/fiber / Fatalw

Method Fatalw

log/default.go:251–253  ·  view source on GitHub ↗

Fatalw logs at fatal level with a message and key/value pairs, then terminates the process.

(msg string, keysAndValues ...any)

Source from the content-addressed store, hash-verified

249
250// Fatalw logs at fatal level with a message and key/value pairs, then terminates the process.
251func (l *defaultLogger) Fatalw(msg string, keysAndValues ...any) {
252 l.privateLogw(LevelFatal, msg, keysAndValues)
253}
254
255// Panicw logs at panic level with a message and key/value pairs, then panics.
256func (l *defaultLogger) Panicw(msg string, keysAndValues ...any) {

Callers

nothing calls this directly

Calls 1

privateLogwMethod · 0.95

Tested by

no test coverage detected