Set swarm log level to WARN

This commit is contained in:
Łukasz Magiera 2019-10-29 20:51:44 +01:00
parent 6d594bab67
commit 391c73774d
2 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,8 @@ const FlagStorageRepo = "storagerepo"
func main() {
logging.SetLogLevel("*", "INFO")
logging.SetLogLevel("swarm", "WARN")
local := []*cli.Command{
runCmd,
initCmd,

View File

@ -16,6 +16,8 @@ import (
func main() {
logging.SetLogLevel("*", "INFO")
logging.SetLogLevel("dht", "ERROR")
logging.SetLogLevel("swarm", "WARN")
local := []*cli.Command{
DaemonCmd,
}