├── .github └── workflows │ └── go.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── colors.go ├── error.go ├── error_bench_test.go ├── error_helper_test.go ├── error_test.go ├── examples ├── existing_error.go ├── new_error.go ├── nil_error.go ├── save_log.go └── stack_trace.go ├── go.mod ├── output.png ├── print.go └── print_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/README.md -------------------------------------------------------------------------------- /colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/colors.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/error.go -------------------------------------------------------------------------------- /error_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/error_bench_test.go -------------------------------------------------------------------------------- /error_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/error_helper_test.go -------------------------------------------------------------------------------- /error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/error_test.go -------------------------------------------------------------------------------- /examples/existing_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/examples/existing_error.go -------------------------------------------------------------------------------- /examples/new_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/examples/new_error.go -------------------------------------------------------------------------------- /examples/nil_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/examples/nil_error.go -------------------------------------------------------------------------------- /examples/save_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/examples/save_log.go -------------------------------------------------------------------------------- /examples/stack_trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/examples/stack_trace.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ztrue/tracerr 2 | -------------------------------------------------------------------------------- /output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/output.png -------------------------------------------------------------------------------- /print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/print.go -------------------------------------------------------------------------------- /print_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztrue/tracerr/HEAD/print_test.go --------------------------------------------------------------------------------