GoLog
Integrates loggers of several levels in a single struct.
Troubleshooting
Problem:
go test
fails with following error:
"missing ... in args forwarded to print-like function"
Cause:
There is a bug in the go vet
command, which is automatically run when go test
is run, in go 1.11.2. You can read more about it here.
Solution:
Run go test -vet=off