├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── cactus_stats_reporter.go ├── cactus_stats_reporter_test.go ├── go.mod ├── go.sum ├── interface.go ├── internal └── callerskiphelper │ └── callerskiphelper.go ├── logrus_logger.go ├── logrus_logger_test.go ├── mocks └── Statter.go ├── testhelp ├── .gitignore └── fatal.go └── zbark ├── barkify.go ├── barkify_test.go ├── callerskip_go_110.go ├── callerskip_go_19.go ├── callerskip_test.go ├── doc.go ├── double_wrap_test.go ├── zapify.go └── zapify_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/README.md -------------------------------------------------------------------------------- /cactus_stats_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/cactus_stats_reporter.go -------------------------------------------------------------------------------- /cactus_stats_reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/cactus_stats_reporter_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/go.sum -------------------------------------------------------------------------------- /interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/interface.go -------------------------------------------------------------------------------- /internal/callerskiphelper/callerskiphelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/internal/callerskiphelper/callerskiphelper.go -------------------------------------------------------------------------------- /logrus_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/logrus_logger.go -------------------------------------------------------------------------------- /logrus_logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/logrus_logger_test.go -------------------------------------------------------------------------------- /mocks/Statter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/mocks/Statter.go -------------------------------------------------------------------------------- /testhelp/.gitignore: -------------------------------------------------------------------------------- 1 | /fatal 2 | -------------------------------------------------------------------------------- /testhelp/fatal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/testhelp/fatal.go -------------------------------------------------------------------------------- /zbark/barkify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/zbark/barkify.go -------------------------------------------------------------------------------- /zbark/barkify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/zbark/barkify_test.go -------------------------------------------------------------------------------- /zbark/callerskip_go_110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/zbark/callerskip_go_110.go -------------------------------------------------------------------------------- /zbark/callerskip_go_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/zbark/callerskip_go_19.go -------------------------------------------------------------------------------- /zbark/callerskip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/zbark/callerskip_test.go -------------------------------------------------------------------------------- /zbark/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/zbark/doc.go -------------------------------------------------------------------------------- /zbark/double_wrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/zbark/double_wrap_test.go -------------------------------------------------------------------------------- /zbark/zapify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/zbark/zapify.go -------------------------------------------------------------------------------- /zbark/zapify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber-common/bark/HEAD/zbark/zapify_test.go --------------------------------------------------------------------------------