代码拉取完成,页面将自动刷新
// @Title stdzlog.go
// @Description Wraps zlogger log methods to provide global methods
// @Author Aceld - Thu Mar 11 10:32:29 CST 2019
package zlog
/*
A global Log handle is provided by default for external use, which can be called directly through the API series.
The global log object is StdZinxLog.
Note: The methods in this file do not support customization and cannot replace the log recording mode.
If you need a custom logger, please use the following methods:
zlog.SetLogger(yourLogger)
zlog.Ins().InfoF() and other methods.
全局默认提供一个Log对外句柄,可以直接使用API系列调用
全局日志对象 StdZinxLog
注意:本文件方法不支持自定义,无法替换日志记录模式,如果需要自定义Logger:
请使用如下方法:
zlog.SetLogger(yourLogger)
zlog.Ins().InfoF()等方法
*/
// StdZinxLog creates a global log
var StdZinxLog = NewZinxLog("", BitDefault)
// Flags gets the flags of StdZinxLog
func Flags() int {
return StdZinxLog.Flags()
}
// ResetFlags sets the flags of StdZinxLog
func ResetFlags(flag int) {
StdZinxLog.ResetFlags(flag)
}
// AddFlag adds a flag to StdZinxLog
func AddFlag(flag int) {
StdZinxLog.AddFlag(flag)
}
// SetPrefix sets the log prefix of StdZinxLog
func SetPrefix(prefix string) {
StdZinxLog.SetPrefix(prefix)
}
// SetLogFile sets the log file of StdZinxLog
func SetLogFile(fileDir string, fileName string) {
StdZinxLog.SetLogFile(fileDir, fileName)
}
// SetMaxAge 最大保留天数
func SetMaxAge(ma int) {
StdZinxLog.SetMaxAge(ma)
}
// SetMaxSize 单个日志最大容量 单位:字节
func SetMaxSize(ms int64) {
StdZinxLog.SetMaxSize(ms)
}
// SetCons 同时输出控制台
func SetCons(b bool) {
StdZinxLog.SetCons(b)
}
// SetLogLevel sets the log level of StdZinxLog
func SetLogLevel(logLevel int) {
StdZinxLog.SetLogLevel(logLevel)
}
func Debugf(format string, v ...interface{}) {
StdZinxLog.Debugf(format, v...)
}
func Debug(v ...interface{}) {
StdZinxLog.Debug(v...)
}
func Infof(format string, v ...interface{}) {
StdZinxLog.Infof(format, v...)
}
func Info(v ...interface{}) {
StdZinxLog.Info(v...)
}
func Warnf(format string, v ...interface{}) {
StdZinxLog.Warnf(format, v...)
}
func Warn(v ...interface{}) {
StdZinxLog.Warn(v...)
}
func Errorf(format string, v ...interface{}) {
StdZinxLog.Errorf(format, v...)
}
func Error(v ...interface{}) {
StdZinxLog.Error(v...)
}
func Fatalf(format string, v ...interface{}) {
StdZinxLog.Fatalf(format, v...)
}
func Fatal(v ...interface{}) {
StdZinxLog.Fatal(v...)
}
func Panicf(format string, v ...interface{}) {
StdZinxLog.Panicf(format, v...)
}
func Panic(v ...interface{}) {
StdZinxLog.Panic(v...)
}
func Stack(v ...interface{}) {
StdZinxLog.Stack(v...)
}
func init() {
// Since the StdZinxLog object wraps all output methods with an extra layer, the call depth is one more than a normal logger object
// The call depth of a regular zinxLogger object is 2, and the call depth of StdZinxLog is 3
// (因为StdZinxLog对象 对所有输出方法做了一层包裹,所以在打印调用函数的时候,比正常的logger对象多一层调用
// 一般的zinxLogger对象 calldDepth=2, StdZinxLog的calldDepth=3)
StdZinxLog.calldDepth = 3
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。