19 lines
315 B
Go
19 lines
315 B
Go
|
package flog
|
||
|
|
||
|
|
||
|
type Flogger interface {
|
||
|
Fatal(...interface{})
|
||
|
Fatalf(string, ...interface{})
|
||
|
Fatalln(...interface{})
|
||
|
|
||
|
Panic(...interface{})
|
||
|
Panicf(string, ...interface{})
|
||
|
Panicln(...interface{})
|
||
|
|
||
|
Print(...interface{})
|
||
|
Printf(string, ...interface{})
|
||
|
Println(...interface{})
|
||
|
|
||
|
With(...interface{}) Flogger
|
||
|
}
|