errors icon indicating copy to clipboard operation
errors copied to clipboard

clear go error wrapping with caller

Results 2 errors issues
Sort by recently updated
recently updated
newest added

`https://github.com/thanos-io/thanos/tree/main/pkg/errors` is a light replacement of `pkg/errors` for error wrapping.

Use `github.com/fatih/color`, highlight error text, stacktrace parts (line number, path to file, stacktrace element) with different colors and bold/faint. Example of colored formatted string: ```go fmt.Println( color.New(color.FgCyan).Sprintf("[%5s]", time.Since(start).Round(time.Second)), color.New().Sprint(req.Method), color.New(color.Faint).Sprint(req.URL),...

enhancement