dell / dell/iDRAC-Telemetry-Reference-Tools
Switch to structured logging using slog
Open
- Dominant language
- Go
- Stars
- 44
- Forks
- 32
- PR merge metrics
- No merged PRs in 30d
Description
https://go.dev/blog/slog
The new log/slog package in Go 1.21 brings structured logging to the standard library. This will help when deployed to Kubernetes and aggregating logs. I may work up a PR for this one.
```go
import "log/slog"
func main() {
slog.Info("hello, world")
}
```
Contributor guide
Assessment
This issue has not been assessed yet.