diff options
| author | Ernesto Alejandro Santana Hidalgo <ernesto.alejandrosantana@gmail.com> | 2025-05-04 04:30:25 +0000 |
|---|---|---|
| committer | Jonathan Amsterdam <jba@google.com> | 2025-05-06 03:58:07 -0700 |
| commit | 044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f (patch) | |
| tree | 39ad811b9de590fb703e152ee5e43ad92964ac11 /doc/next/6-stdlib | |
| parent | 35b4fd9f373cbe13778eb259a19c496c9c613a1f (diff) | |
| download | go-044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f.tar.xz | |
log/slog: export Source method in Record for custom handler support
Currently, the `source` method in `slog.Record` is not accessible to
custom handlers, requiring developers to re-implement logic for
retrieving source location information. This commit exports the `source`
method as `Source`, enabling consistent access for custom logging
handlers and reducing code redundancy.
Fixes #70280
Change-Id: I3eb3bc60658abc5de95697a10bddd11ab54c6e13
GitHub-Last-Rev: bd81afe5a502bf0e2d03c30d0f5199a532cc4c62
GitHub-Pull-Request: golang/go#70281
Reviewed-on: https://go-review.googlesource.com/c/go/+/626976
Reviewed-by: qiu laidongfeng2 <2645477756@qq.com>
Reviewed-by: Jonathan Amsterdam <jba@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'doc/next/6-stdlib')
| -rw-r--r-- | doc/next/6-stdlib/99-minor/log/slog/70280.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/next/6-stdlib/99-minor/log/slog/70280.md b/doc/next/6-stdlib/99-minor/log/slog/70280.md new file mode 100644 index 0000000000..7f1b734d4f --- /dev/null +++ b/doc/next/6-stdlib/99-minor/log/slog/70280.md @@ -0,0 +1 @@ +[Record] now has a Source() method, returning its source location or nil if unavailable. |
