// Debugf 相当于调用了 logs.Debugf,外加一些调用者的详细信息 func Debugf(r *http.Request, format string, v ...interface{}) { logs.DEBUG().Output(2, messagef(r, format, v)) }
// Debug 相当于调用了 logs.Debug,外加一些调用者的详细信息 func Debug(r *http.Request, v ...interface{}) { logs.DEBUG().Output(2, message(r, v)) }