Utils for use with zerolog
Setup logger with console writer (human readable)
logutil.SetupLogger(true)
Log new error with stack trace
err := errors.Errorf("testing")
// Msg must be empty string, if specified it overrides the error message
log.Error().Stack().Err(err).Msg("")
Add stack trace to an existing error
err := errors.WithStack(err)
When logging to json a stack trace will also be included
Setup additional writers like this, see examples in log_test.go
logutil.SetupLogger(true, w1, w2)
Run all tests
cd ${GOPATH}/src/github.com/mozey/logutil
gotest -v ./...