Skip to content

Instantly share code, notes, and snippets.

@jfeng45
Created July 28, 2020 13:29
Show Gist options
  • Save jfeng45/3dd5fb397f7cd2dba891b4ec718502cc to your computer and use it in GitHub Desktop.
Save jfeng45/3dd5fb397f7cd2dba891b4ec718502cc to your computer and use it in GitHub Desktop.
type Logger interface {
Errorf(format string, args ...interface{})
Fatalf(format string, args ...interface{})
Fatal(args ...interface{})
Infof(format string, args ...interface{})
Info(args ...interface{})
Warnf(format string, args ...interface{})
Debugf(format string, args ...interface{})
Debug(args ...interface{})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment