|
|
|
|
|
by duskwuff
1036 days ago
|
|
And if your current logging is along the lines of log.Printf("failed to frob %s: %s", thing, error)
then moving from that to: slog.Error("failed to frob", "thing", thing, "error", error)
isn't terribly difficult, and will make log analysis dramatically easier. |
|