Commit Graph

5 Commits

Author SHA1 Message Date
Denis Bilenko 6c203fb957 keep printing attrs 2025-01-24 20:13:40 +01:00
Denis Bilenko 38be3f14fa restore friendly.go 2025-01-24 20:13:40 +01:00
Denis Bilenko fab3c805fb clean up 2025-01-24 20:13:40 +01:00
Denis Bilenko e0dda22fe9 add acceptance/selftest 2025-01-24 20:13:40 +01:00
Pieter Noordhuis 60a8abdcd7
Rewrite the friendly log handler (#1038)
## Changes

It wasn't working because it deferred to the regular `slog.TextHandler`
for the `WithAttr` and `WithGroup` functions. Both of these functions
don't mutate the handler but return a new one. When the top-level logger
called one of these, log records in that context used the standard
handler instead of ours.

To implement tracking of attributes and groups, I followed the guide at
https://github.com/golang/example/blob/master/slog-handler-guide/README.md
for writing custom handlers.

## Tests

The new tests demonstrate formatting through `t.Log` and look good.
2023-12-01 12:17:04 +00:00