• Golang 结构化日志包 log/slog 详解(五):LogValuer 和函数包装


    上一篇文章讲解了 log/slog 包中的分组、上下文和属性值类型,本文讲解下 LogValuer 和日志记录函数的正确包装方法。

    slog.LogValuer

    如果想改变或者自定义一个类型的日志记录行为,可以通过实现 slog.LogValuer 接口来实现,slog.LogValuer 接口的定义如下:

    1. type LogValuer interface {
    2. LogValue() Value
    3. }

    定义了一个 LogValue 方法,返回一个 Value 类型的对象。如果一个类型实现了 LogValuer 接口,那么从它的 LogValue 方法返回的 Value 将被用于日志记录,可以用来控制该类型的值在日志中的显示方式。看个简单示例:

    1. package main
    2. import (
    3. "log/slog"
    4. "os"
    5. )
    6. type Token string
    7. // 实现 slog.LogValuer 接口
    8. // 避免泄露 token
    9. func (Token) LogValue() slog.Value {
    10. return slog.StringValue("******")
    11. }
    12. func main() {
    13. t := Token("shhhh!")
    14. logger := slog.New(slog.NewTextHandler(os.Stdout, nil))
    15. logger.Info("生成 token", "用户", "路多辛的博客", "token", t)
    16. }

    输出内容如下:

    time=2023-10-15T15:06:58.253+08:00 level=INFO msg="生成 token" 用户=路多辛的博客 token=******

    从安全角度看,密码或者token 等敏感信息是不能被记录在日志里面的,可以使用自定义的并且实现了 LogValue 的类型来避免这种情况产生。在这个例子中,当记录 token 日志时,token 会被转换为“******”后记录在日志里面。再看一个结合字段分组使用的示例:

    1. package main
    2. import (
    3. "log/slog"
    4. )
    5. type Name struct {
    6. First, Last string
    7. }
    8. func (n Name) LogValue() slog.Value {
    9. return slog.GroupValue(
    10. slog.String("first", n.First),
    11. slog.String("last", n.Last))
    12. }
    13. func main() {
    14. n := Name{"路多辛的博客", "路多辛的所思所想"}
    15. slog.Info("任务结束", "agent", n)
    16. }

    输出内容如下:

    2023/10/15 15:06:09 INFO 任务结束 agent.first=路多辛的博客 agent.last=路多辛的所思所想

    包装输出函数

    日志记录函数使用调用堆栈上的反射来查找应用程序中日志记录调用的文件名和行号,这可能会导致包装 slog 的函数记录错误的的源信息。举个例子,如果在 mylog.go 中定义了一个日志记录函数 Infof,然后在 main.go 中调用了此函数,这种情况下,日志会将把源文件记录为 mylog.go 而不是 main.go。正确实现 Infof 函数的方式是将获取的源信息传递给 NewRecord 函数,示例代码如下:

    1. package main
    2. import (
    3. "context"
    4. "fmt"
    5. "log/slog"
    6. "os"
    7. "path/filepath"
    8. "runtime"
    9. "time"
    10. )
    11. func Infof(logger *slog.Logger, format string, args ...any) {
    12. if !logger.Enabled(context.Background(), slog.LevelInfo) {
    13. return
    14. }
    15. var pcs [1]uintptr
    16. runtime.Callers(2, pcs[:]) // skip [Callers, Infof]
    17. r := slog.NewRecord(time.Now(), slog.LevelInfo, fmt.Sprintf(format, args...), pcs[0])
    18. _ = logger.Handler().Handle(context.Background(), r)
    19. }
    20. func main() {
    21. replace := func(groups []string, a slog.Attr) slog.Attr {
    22. // Remove time.
    23. if a.Key == slog.TimeKey && len(groups) == 0 {
    24. return slog.Attr{}
    25. }
    26. // Remove the directory from the source's filename.
    27. if a.Key == slog.SourceKey {
    28. source := a.Value.Any().(*slog.Source)
    29. source.File = filepath.Base(source.File)
    30. }
    31. return a
    32. }
    33. logger := slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{AddSource: true, ReplaceAttr: replace}))
    34. Infof(logger, "message, %s", "formatted")
    35. }

  • 相关阅读:
    MindManager22全新版思维导图软件工具
    【双向数据绑定原理 vue2.0 与 vue3.0】
    流程控制-For循环语句
    python实现矩阵转置
    Servlet
    Webpack Chunk 分包规则
    Awesome GIS
    【图像去噪】基于PM模型实现图像降噪附matlab代码
    【SDX12】高通SDX12 NatType功能分析及实现
    C++基于多设计模式下的同步&异步日志系统day3
  • 原文地址:https://blog.csdn.net/luduoyuan/article/details/133843382