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

     1  package loggerinf
     2  
     3  type FormatFatalLogger interface {
     4  	// FatalFmt
     5  	//
     6  	// logs a message at Fatal level
     7  	// and process will exit with status set to 1.
     8  	FatalFmt(format string, args ...interface{})
     9  	FatalFmtStackSkip(
    10  		stackSkipIndex int,
    11  		format string,
    12  		args ...interface{},
    13  	)
    14  }