22 lines
621 B
Go
22 lines
621 B
Go
package kit
|
|
|
|
import (
|
|
logging "github.com/ipfs/go-log/v2"
|
|
|
|
"github.com/filecoin-project/lotus/lib/lotuslog"
|
|
)
|
|
|
|
func QuietMiningLogs() {
|
|
lotuslog.SetupLogLevels()
|
|
|
|
_ = logging.SetLogLevel("miner", "ERROR") // set this to INFO to watch mining happen.
|
|
_ = logging.SetLogLevel("chainstore", "ERROR")
|
|
_ = logging.SetLogLevel("chain", "ERROR")
|
|
_ = logging.SetLogLevel("sub", "ERROR")
|
|
_ = logging.SetLogLevel("storageminer", "ERROR")
|
|
_ = logging.SetLogLevel("pubsub", "ERROR")
|
|
_ = logging.SetLogLevel("gen", "ERROR")
|
|
_ = logging.SetLogLevel("rpc", "ERROR")
|
|
_ = logging.SetLogLevel("dht/RtRefreshManager", "ERROR")
|
|
}
|