├── .editorconfig ├── .github ├── CODEOWNERS └── workflows │ └── main.yaml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── benchmark_test.go ├── doc.go ├── go.mod ├── go.sum ├── slog_otel.go └── slog_otel_test.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @remychantenay 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/README.md -------------------------------------------------------------------------------- /benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/benchmark_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/doc.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/go.sum -------------------------------------------------------------------------------- /slog_otel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/slog_otel.go -------------------------------------------------------------------------------- /slog_otel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remychantenay/slog-otel/HEAD/slog_otel_test.go --------------------------------------------------------------------------------