In slog.TextHandler, they use fmt.Sprintf("%+v", err) to print errors. This is useful in conjunction with some error libraries where their error type also implements fmt.Formatter, and uses it to print a stacktrace or other error metadata.
Below is a sample of console-slog modified to do this. Would you consider a PR for this?

In slog.TextHandler, they use
fmt.Sprintf("%+v", err)to print errors. This is useful in conjunction with some error libraries where theirerrortype also implementsfmt.Formatter, and uses it to print a stacktrace or other error metadata.Below is a sample of console-slog modified to do this. Would you consider a PR for this?