gookit / slog

📑 Lightweight, configurable, extensible logging library written in Go. Support multi level, multi outputs and built-in multi file logger, buffers, clean, rotate-file handling.一个易于使用的,轻量级、可配置、可扩展的日志库。支持多个级别,输出到多文件;内置文件日志处理、自动切割、清理、压缩等增强功能

Home Page:https://pkg.go.dev/github.com/gookit/slog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

如何获取原始参数

zuozhehao opened this issue · comments

slog.PushHandlers(handler...)

func (n *notify) Handle(record *slog.Record) error {

	return nil
}

在record 如何获取slog.Error 传入的args

commented

handler 这里拿不到了, args 已经被格式化到 record.Message 了

handler 这里拿不到了, args 已经被格式化到 record.Message 了

是否有别的方法可以拿到,便于判断是否需要做通知 @inhere

commented

这种情况应该设置 context data 或者 extra 数据, 使用更方便:

// add log
slog.WithData(slog.M{"notify": true}).Info("some message")

// in handler

func (n *notify) Handle(record *slog.Record) error {
	notify := record.Data["notify"]
	if notify {
		// do something ...
	}
	return nil
}

这种情况应该设置 context data 或者 extra 数据, 使用更方便:

// add log
slog.WithData(slog.M{"notify": true}).Info("some message")

// in handler

func (n *notify) Handle(record *slog.Record) error {
	notify := record.Data["notify"]
	if notify {
		// do something ...
	}
	return nil
}

@inhere
1、那这样就需要在所有地方都加上.WithData(slog.M{"notify": true})
2、对于那些返回自定义error 的有附加数据得map[string]any,那我还需要把map[string]any 转成slog.M

需要做以上两个处理才可以。

如果能在record 拿到args,那改动就很小,slog.Error(err) 只需在record拿到参数断言判断下就可以做很多事情。

commented

记录下 args 也可以,我下个版本在 record 加个 Fmt, Args 备份。

commented

发了 v0.5.2, logger 新增了选项:

	// BackupArgs backup log input args to Record.Args
	BackupArgs bool