Jason Lui
Jason Lui
addresses #86
currently, github.com/pkg/errors is used to return error, however since go 1.13 introduced error wrapping, this is deprecated, and the repo has been archived since.
Hi, In https://github.com/cockroachdb/cockroach-go/blob/master/testserver/version/version.go the archived pkg/errors is still being used, it should be replaced with `fmt.Errorf()`.
Hi, currently `Logger` uses a mix of value and pointer semantics, e.g., `WithContext` has a value receiver, `Fatal`, `Err` etc have pointer receivers, why is this? sorry if this has...