func proxy(cmd *cobra.Command, args []string) { if cfg.debug { log.SetLevel(zap.DebugLevel) } stdlog, _ := zwrap.Standardize(log, zap.DebugLevel) pollon.SetLogger(stdlog) if cfg.clusterName == "" { fmt.Printf("cluster name required") os.Exit(1) } if cfg.storeBackend == "" { fmt.Printf("store backend type required") os.Exit(1) } uid := common.UID() log.Info("proxy uid", zap.String("uid", uid)) clusterChecker, err := NewClusterChecker(uid, cfg) if err != nil { fmt.Printf("cannot create cluster checker: %v", err) os.Exit(1) } clusterChecker.Start() }
func init() { pollon.SetLogger(log) }