package log func Info(args ...interface{}) { _logger.Info(args) } func Warn(args ...interface{}) { _logger.Warn(args) } func Debug(args ...interface{}) { _logger.Debug(args) } func Infof(template string, args ...interface{}) { _logger.Infof(template, args) } func Warnf(template string, args ...interface{}) { _logger.Warnf(template, args) } func Debugf(template string, args ...interface{}) { _logger.Debugf(template, args) }