mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 12:10:26 +00:00
23 lines
496 B
Go
23 lines
496 B
Go
|
package log
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// Interface represents the API of both Logger and Entry.
|
||
|
type Interface interface {
|
||
|
WithFields(Fielder) *Entry
|
||
|
WithField(string, interface{}) *Entry
|
||
|
WithDuration(time.Duration) *Entry
|
||
|
WithError(error) *Entry
|
||
|
Debug(string)
|
||
|
Info(string)
|
||
|
Warn(string)
|
||
|
Error(string)
|
||
|
Fatal(string)
|
||
|
Debugf(string, ...interface{})
|
||
|
Infof(string, ...interface{})
|
||
|
Warnf(string, ...interface{})
|
||
|
Errorf(string, ...interface{})
|
||
|
Fatalf(string, ...interface{})
|
||
|
Trace(string) *Entry
|
||
|
}
|