status-go/logutils/logger.go

11 lines
179 B
Go
Raw Normal View History

2019-07-17 22:25:42 +00:00
package logutils
import (
"github.com/ethereum/go-ethereum/log"
)
// Logger returns the main logger instance used by status-go.
func Logger() log.Logger {
return log.Root()
}