ipld-eth-beacon-indexer/pkg/loghelper/log_endpoint.go
2022-04-27 14:01:59 -04:00

13 lines
244 B
Go

package loghelper
import (
log "github.com/sirupsen/logrus"
)
// A simple helper function that will help wrap the error message.
func LogEndpoint(endpoint string) *log.Entry {
return log.WithFields(log.Fields{
"endpoint": endpoint,
})
}