1
0
mirror of https://github.com/juanfont/headscale.git synced 2025-05-24 08:18:22 +00:00

8 lines
129 B
Go
Raw Normal View History

package util
import "github.com/rs/zerolog/log"
func LogErr(err error, msg string) {
log.Error().Caller().Err(err).Msg(msg)
}