log

package
v0.0.24 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 4, 2023 License: MIT Imports: 14 Imported by: 15

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Debug

func Debug(a ...interface{})

Debug 打印调试日志

func Debugf

func Debugf(format string, a ...interface{})

Debugf 打印调试模板日志

func Error

func Error(a ...interface{})

Error 打印错误日志

func Errorf

func Errorf(format string, a ...interface{})

Errorf 打印错误模板日志

func Fatal

func Fatal(a ...interface{})

Fatal 打印致命错误日志

func Fatalf

func Fatalf(format string, a ...interface{})

Fatalf 打印致命错误模板日志

func Info

func Info(a ...interface{})

Info 打印信息日志

func Infof

func Infof(format string, a ...interface{})

Infof 打印信息模板日志

func NewLogger

func NewLogger(opts ...Option) *defaultLogger

func NewWriter added in v0.0.3

func NewWriter(opts WriterOptions) (io.Writer, error)

func Panic added in v0.0.3

func Panic(a ...interface{})

Panic 打印Panic日志

func Panicf added in v0.0.3

func Panicf(format string, a ...interface{})

Panicf 打印Panic模板日志

func SetLogger

func SetLogger(logger Logger)

SetLogger 设置日志记录器

func Warn

func Warn(a ...interface{})

Warn 打印警告日志

func Warnf

func Warnf(format string, a ...interface{})

Warnf 打印警告模板日志

Types

type CutRule added in v0.0.3

type CutRule int

CutRule 日志切割规则

const (
	CutByYear   CutRule = iota + 1 // 按照年切割
	CutByMonth                     // 按照月切割
	CutByDay                       // 按照日切割
	CutByHour                      // 按照时切割
	CutByMinute                    // 按照分切割
	CutBySecond                    // 按照秒切割
)

func (CutRule) String added in v0.0.4

func (c CutRule) String() string

type Entity added in v0.0.3

type Entity struct {
	Color   int
	Level   Level
	Time    string
	Caller  string
	Message string
	Frames  []runtime.Frame
	// contains filtered or unexported fields
}

func (*Entity) Free added in v0.0.3

func (e *Entity) Free()

func (*Entity) Log added in v0.0.3

func (e *Entity) Log()

type EntityPool added in v0.0.3

type EntityPool struct {
	// contains filtered or unexported fields
}

type Format added in v0.0.3

type Format int

Format 日志输出格式

const (
	TextFormat Format = iota // 文本格式
	JsonFormat               // JSON格式
)

func (Format) String added in v0.0.4

func (f Format) String() string

type Level

type Level int

Level 日志级别

const (
	NoneLevel  Level = iota // NONE
	DebugLevel              // DEBUG
	InfoLevel               // INFO
	WarnLevel               // WARN
	ErrorLevel              // ERROR
	FatalLevel              // FATAL
	PanicLevel              // PANIC
)

func ParseLevel added in v0.0.4

func ParseLevel(level string) Level

func (Level) String

func (l Level) String() string

type Logger

type Logger interface {
	// Debug 打印调试日志
	Debug(a ...interface{})
	// Debugf 打印调试模板日志
	Debugf(format string, a ...interface{})
	// Info 打印信息日志
	Info(a ...interface{})
	// Infof 打印信息模板日志
	Infof(format string, a ...interface{})
	// Warn 打印警告日志
	Warn(a ...interface{})
	// Warnf 打印警告模板日志
	Warnf(format string, a ...interface{})
	// Error 打印错误日志
	Error(a ...interface{})
	// Errorf 打印错误模板日志
	Errorf(format string, a ...interface{})
	// Fatal 打印致命错误日志
	Fatal(a ...interface{})
	// Fatalf 打印致命错误模板日志
	Fatalf(format string, a ...interface{})
	// Panic 打印Panic日志
	Panic(a ...interface{})
	// Panicf 打印Panic模板日志
	Panicf(format string, a ...interface{})
}

func GetLogger

func GetLogger() Logger

GetLogger 获取日志记录器

type Option

type Option func(o *options)

func WithCallerFullPath added in v0.0.4

func WithCallerFullPath(enable bool) Option

WithCallerFullPath 设置是否启用调用文件全路径

func WithCallerSkip added in v0.0.3

func WithCallerSkip(skip int) Option

WithCallerSkip 设置调用者跳过的层级深度

func WithClassifiedStorage added in v0.0.4

func WithClassifiedStorage(enable bool) Option

WithClassifiedStorage 设置启用文件分级存储 启用后,日志将进行分级存储,大一级的日志将存储于小于等于自身的日志级别文件中 例如:InfoLevel级的日志将存储于due.debug.20220910.log、due.info.20220910.log两个日志文件中

func WithFile added in v0.0.4

func WithFile(file string) Option

WithFile 设置输出的文件路径

func WithFileCutRule added in v0.0.3

func WithFileCutRule(cutRule CutRule) Option

WithFileCutRule 设置文件切割规则

func WithFileMaxAge added in v0.0.3

func WithFileMaxAge(maxAge time.Duration) Option

WithFileMaxAge 设置文件最大留存时间

func WithFileMaxSize added in v0.0.3

func WithFileMaxSize(size int64) Option

WithFileMaxSize 设置输出的单个文件尺寸限制

func WithFormat added in v0.0.4

func WithFormat(format Format) Option

WithFormat 设置输出的日志格式

func WithLevel added in v0.0.4

func WithLevel(level Level) Option

WithLevel 设置输出的最低日志级别

func WithStackLevel added in v0.0.3

func WithStackLevel(level Level) Option

WithStackLevel 设置堆栈的最小输出级别

func WithStdout added in v0.0.4

func WithStdout(enable bool) Option

WithStdout 设置是否输出到终端

func WithTimeFormat added in v0.0.4

func WithTimeFormat(format string) Option

WithTimeFormat 设置时间格式

type WriterOptions added in v0.0.3

type WriterOptions struct {
	Path    string
	Level   Level
	MaxAge  time.Duration
	MaxSize int64
	CutRule CutRule
}

Directories

Path Synopsis
aliyun module
logrus module
tencent module
zap module

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL