1 Star 0 Fork 2

阿呆/oauth2

forked from NilOrganization/oauth2 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
logger.go 835 Bytes
一键复制 编辑 原始数据 按行查看 历史
Keng 提交于 2019-08-30 15:04 . update
package oauth2
import "fmt"
// Logger logger
type Logger interface {
// Debugf 测试
Debugf(format string, args ...interface{})
// Debugln 测试
Debugln(args ...interface{})
// Errorf 错误
Errorf(format string, args ...interface{})
// Errorln 错误
Errorln(args ...interface{})
}
// DefaultLogger ...
type DefaultLogger struct{}
// Debugf ...
func (*DefaultLogger) Debugf(format string, args ...interface{}) {
fmt.Printf("OAuth2 [DEBUG] "+format+"\n", args...)
}
// Debugln ...
func (*DefaultLogger) Debugln(args ...interface{}) {
fmt.Println("OAuth2 [DEBUG] ", args)
}
// Errorf ...
func (*DefaultLogger) Errorf(format string, args ...interface{}) {
fmt.Printf("OAuth2 [ERROR] "+format+"\n", args...)
}
// Errorln ...
func (*DefaultLogger) Errorln(args ...interface{}) {
fmt.Println("OAuth2 [ERROR] ", args)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xhochipe/oauth2.git
[email protected]:xhochipe/oauth2.git
xhochipe
oauth2
oauth2
master

搜索帮助