Skip to content

Instantly share code, notes, and snippets.

@jfeng45
Created July 28, 2020 13:37
Show Gist options
  • Save jfeng45/7041ad97a31235192382016df86c8c69 to your computer and use it in GitHub Desktop.
Save jfeng45/7041ad97a31235192382016df86c8c69 to your computer and use it in GitHub Desktop.
const (
LOGRUS string = "logrus"
ZAP string = "zap"
GLOG string = "glog"
)
// logger map to map logger code to logger builder
var logfactoryBuilderMap = map[string]logFbInterface{
ZAP: &zap.ZapFactory{},
LOGRUS: &logrus.LogrusFactory{},
GLOG: &glog.glogFactory{},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment