mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
11 lines
179 B
Go
11 lines
179 B
Go
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()
|
|
}
|