├── .github └── workflows │ └── go.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── _examples ├── basic │ └── main.go ├── custom-handler │ └── main.go └── slog │ ├── handler │ └── main.go │ └── redirect │ └── main.go ├── benchmarks └── benchmark_test.go ├── benchmarks_test.go ├── byte_pool.go ├── default_logger.go ├── default_logger_test.go ├── entry.go ├── errors.go ├── go.mod ├── go.sum ├── handlers ├── json │ ├── json.go │ └── json_test.go └── slog │ ├── slog_redirect.go │ └── slog_redirect_test.go ├── level.go ├── log.go ├── log_pre_1.21.go ├── log_test.go ├── logo.png └── slog.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/README.md -------------------------------------------------------------------------------- /_examples/basic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/_examples/basic/main.go -------------------------------------------------------------------------------- /_examples/custom-handler/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/_examples/custom-handler/main.go -------------------------------------------------------------------------------- /_examples/slog/handler/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/_examples/slog/handler/main.go -------------------------------------------------------------------------------- /_examples/slog/redirect/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/_examples/slog/redirect/main.go -------------------------------------------------------------------------------- /benchmarks/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/benchmarks/benchmark_test.go -------------------------------------------------------------------------------- /benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/benchmarks_test.go -------------------------------------------------------------------------------- /byte_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/byte_pool.go -------------------------------------------------------------------------------- /default_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/default_logger.go -------------------------------------------------------------------------------- /default_logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/default_logger_test.go -------------------------------------------------------------------------------- /entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/entry.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/errors.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/go.sum -------------------------------------------------------------------------------- /handlers/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/handlers/json/json.go -------------------------------------------------------------------------------- /handlers/json/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/handlers/json/json_test.go -------------------------------------------------------------------------------- /handlers/slog/slog_redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/handlers/slog/slog_redirect.go -------------------------------------------------------------------------------- /handlers/slog/slog_redirect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/handlers/slog/slog_redirect_test.go -------------------------------------------------------------------------------- /level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/level.go -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/log.go -------------------------------------------------------------------------------- /log_pre_1.21.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/log_pre_1.21.go -------------------------------------------------------------------------------- /log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/log_test.go -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/logo.png -------------------------------------------------------------------------------- /slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-playground/log/HEAD/slog.go --------------------------------------------------------------------------------