gitlab.com/evatix-go/core@v1.3.55/coreinterface/loggerinf/FatalLogger.go (about)

     1  package loggerinf
     2  
     3  type FatalLogger interface {
     4  	// Fatal logs a message at Fatal level
     5  	// and process will exit with status set to 1.
     6  	Fatal(args ...interface{})
     7  }