-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
270 lines (236 loc) · 7.39 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
package main
import (
"context"
"encoding/json"
"errors"
"fmt"
"log"
"log/slog"
"os"
"github.com/jianghushinian/blog-go-example/log/slog/customlog"
)
func main() {
// 快速开始
{
slog.Debug("debug message")
slog.Info("info message")
slog.Warn("warn message")
slog.Error("error message")
}
// 附加属性 key/value
{
slog.Debug("debug message", "hello", "world")
slog.Info("info message", "hello", "world")
slog.Warn("warn message", "hello", "world")
slog.Error("error message", "hello", "world")
}
// context 版本
{
ctx := context.Background()
slog.DebugContext(ctx, "debug message", "hello", "world")
slog.InfoContext(ctx, "info message", "hello", "world")
slog.WarnContext(ctx, "warn message", "hello", "world")
slog.ErrorContext(ctx, "error message", "hello", "world")
}
// 修改日志级别
{
slog.SetLogLoggerLevel(slog.LevelDebug)
slog.Debug("debug message", "hello", "world")
slog.Info("info message", "hello", "world")
slog.Warn("warn message", "hello", "world")
slog.Error("error message", "hello", "world")
}
// 获取当前日志级别
// ref: https://stackoverflow.com/questions/77504588/how-to-retrieve-log-level-with-slog-package-in-go
{
var currentLevel slog.Level = -10
for _, level := range []slog.Level{slog.LevelDebug, slog.LevelInfo, slog.LevelWarn, slog.LevelError} {
r := slog.Default().Enabled(context.Background(), level)
if r {
currentLevel = level
break
}
}
fmt.Printf("current log level: %v\n", currentLevel)
}
// 结构化日志
// JSONHandler
{
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
l.Debug("debug message", "hello", "world")
}
// TextHandler
{
l := slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
l.Debug("debug message", "hello", "world")
}
// 使用自定义 logger 替换默认 logger
{
slog.Info("info message", "hello", "world")
log.Println("normal log")
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
slog.SetDefault(l)
slog.Info("info message", "hello", "world")
// log 也被修改了
log.Println("normal log")
}
// 将 slog.Logger 转换为 log.Logger
{
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
logLogger := slog.NewLogLogger(l.Handler(), slog.LevelInfo)
logLogger.Println("normal log") // 输出日志级别跟随 slog.LevelInfo 设置
}
// 使用宽松类型可能出现不匹配的 key/value
{
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
l.Info("info message", "hello") // "!BADKEY":"hello"
// 使用 vet 命令检查此类问题
// $ go vet .
// ./main.go:120:3: call to slog.Logger.Info missing a final value
}
// 使用强类型
{
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
l.Info("info message", slog.String("hello", "world"), slog.Int("status", 200))
l.Info("info message", slog.String("hello", "world"), slog.Int("status", 200), "extra") // "!BADKEY":"extra"
}
// 利用 LogAttrs 限制必须使用强类型,避免出现 `!BADKEY`
{
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
l.LogAttrs(
context.Background(),
slog.LevelInfo,
"info message",
slog.String("hello", "world"),
slog.Int("status", 405),
slog.Any("err", errors.New("http method not allowed")), // error 类型可以使用 slog.Any 输出
// "extra","text", // 编译不通过,类型不匹配
)
}
// 属性分组
// JSONHandler
{
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
l.Info(
"info message",
slog.Group("user", "name", "root", slog.Int("age", 20)),
)
}
// TextHandler
{
l := slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
l.Info(
"info message",
slog.Group("user", "name", "root", slog.Int("age", 20)),
)
}
// 使用子 logger
{
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
// 附加自定义属性
sl := l.With("requestId", "10191529-bc34-4efe-95e4-ecac7321773a")
sl.Debug("debug message")
sl.Info("info message")
}
// 为子 logger 属性分组
{
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
sl := l.WithGroup("user").With("requestId", "10191529-bc34-4efe-95e4-ecac7321773a")
sl.Debug("debug message", "name", "admin")
sl.Info("info message", "name", "admin")
}
// 实现 slog.LogValuer 接口,隐藏敏感信息
{
l := slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
AddSource: true, // 记录日志位置
Level: slog.LevelDebug, // 设置日志级别
ReplaceAttr: nil,
}))
user := &User{
ID: 123,
Name: "jianghushinian",
Password: "pass",
}
l.Info("info message", "user1", user) // *User 未实现 slog.LogValuer 接口
l.Info("info message", "user2", *user) // User 未实现 slog.LogValuer 接口,所以无法隐藏敏感信息
// l.Info("info message", "user3", user.SecureString())
}
// 使用自定义 logger
{
l := customlog.New(customlog.LevelDebug)
l.Debug("custom debug message", "hello", "world")
l.Trace("custom trace message", "hello", "world")
l.Info("custom info message", "hello", "world")
l.SetLevel(customlog.LevelInfo)
l.Debug("custom debug message", "hello", "world")
l.Trace("custom trace message", "hello", "world")
l.Info("custom info message", "hello", "world")
}
// 使用自定义 handler
{
l := slog.New(customlog.NewHandler(os.Stdout, nil))
l.Info("info message", "hello", "world")
}
}
type User struct {
ID int `json:"id"`
Name string `json:"name"`
Password string `json:"password"`
}
// LogValue implements slog.LogValuer interface
// slog.Value 不可比较: https://jianghushinian.cn/2024/06/15/how-to-make-structures-incomparable-in-go/
func (u *User) LogValue() slog.Value {
return slog.GroupValue(
slog.Int("id", u.ID),
slog.String("name", u.Name),
)
}
func (u *User) SecureString() string {
u.Password = ""
res, _ := json.Marshal(u)
return string(res)
}