We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1598b95 commit 556c210Copy full SHA for 556c210
1 file changed
withstack/withstack.go
@@ -84,9 +84,9 @@ func (w *withStack) LogValue() slog.Value {
84
name = fn.Name()
85
attrs = append(attrs, slog.Group(
86
name,
87
- slog.Any("file", file),
88
- slog.Any("name", name),
89
- slog.Any("line", line),
+ slog.String("file", file),
+ slog.String("name", name),
+ slog.Int("line", line),
90
))
91
}
92
return attrs
0 commit comments