├── .envrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.go ├── context.go ├── context_test.go ├── custom_err_type_test.go ├── doc.go ├── errors_hack.go ├── errors_hack_test.go ├── ex ├── doc.go ├── gotrace.go ├── http.go ├── http_test.go └── l2met.go ├── example └── http.go ├── filter.go ├── formatter.go ├── go.mod ├── go.sum ├── logger.go ├── logger_test.go ├── message.go ├── opname ├── opname.go └── opname_test.go ├── regression_test.go ├── shell.nix ├── sprintf.go └── stack.go /.envrc: -------------------------------------------------------------------------------- 1 | eval "$(lorri direnv)" -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/README.md -------------------------------------------------------------------------------- /action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/action.go -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/context.go -------------------------------------------------------------------------------- /context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/context_test.go -------------------------------------------------------------------------------- /custom_err_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/custom_err_type_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/doc.go -------------------------------------------------------------------------------- /errors_hack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/errors_hack.go -------------------------------------------------------------------------------- /errors_hack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/errors_hack_test.go -------------------------------------------------------------------------------- /ex/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/ex/doc.go -------------------------------------------------------------------------------- /ex/gotrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/ex/gotrace.go -------------------------------------------------------------------------------- /ex/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/ex/http.go -------------------------------------------------------------------------------- /ex/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/ex/http_test.go -------------------------------------------------------------------------------- /ex/l2met.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/ex/l2met.go -------------------------------------------------------------------------------- /example/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/example/http.go -------------------------------------------------------------------------------- /filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/filter.go -------------------------------------------------------------------------------- /formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/formatter.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/go.sum -------------------------------------------------------------------------------- /logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/logger.go -------------------------------------------------------------------------------- /logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/logger_test.go -------------------------------------------------------------------------------- /message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/message.go -------------------------------------------------------------------------------- /opname/opname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/opname/opname.go -------------------------------------------------------------------------------- /opname/opname_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/opname/opname_test.go -------------------------------------------------------------------------------- /regression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/regression_test.go -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/shell.nix -------------------------------------------------------------------------------- /sprintf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/sprintf.go -------------------------------------------------------------------------------- /stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/ln/HEAD/stack.go --------------------------------------------------------------------------------