15 lines
393 B
Go
15 lines
393 B
Go
package test_helpers
|
|
|
|
import (
|
|
geth_log "github.com/ethereum/go-ethereum/log"
|
|
|
|
"github.com/cerc-io/plugeth-statediff/utils/log"
|
|
)
|
|
|
|
// SilenceLogs silences the geth logs and sets the plugin test log level to "warning"
|
|
// The geth sync logs are noisy, so it can be nice to silence them.
|
|
func SilenceLogs() {
|
|
geth_log.Root().SetHandler(geth_log.DiscardHandler())
|
|
log.TestLogger.SetLevel(2)
|
|
}
|