Logging of sirkon/errors in tests, including context.
go get github.com/sirkon/errorsJust use helper functions:
testlog.Log(t, errors.New("log entry"))
testlog.Error(t, errors.New("some serious error"))or
tl := testlog.New(t)
tl.Log(errors.New("log entry"))
tl.Error(errors.New("som serious error"))Tests are meant to fail in this module.