10 lines
120 B
Go
10 lines
120 B
Go
|
package cli
|
||
|
|
||
|
import (
|
||
|
logging "github.com/ipfs/go-log/v2"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
logging.SetLogLevel("watchdog", "ERROR")
|
||
|
}
|