Skip to content

mozey/logutil

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logutil

Utils for use with zerolog

Quick start

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

Multiple writers

Setup additional writers like this, see examples in log_test.go

logutil.SetupLogger(true, w1, w2)

Testing

Run all tests

cd ${GOPATH}/src/github.com/mozey/logutil
gotest -v ./...

About

Utils for use with zerolog

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages