Commit Graph

3 Commits

Author SHA1 Message Date
Denis Bilenko 8df08e8895 Restore back time for debug mode 2025-02-04 15:46:46 +01:00
Denis Bilenko 5aa3bdade4 tweak log output
- remove time
- remove attrs unless level is debug
- replace $DEV_VERSION
- add acceptance test for --debug
2025-02-04 15:46:46 +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