func isBootstrapNode(ctx *cli.Context) bool { if ctx.App != nil && !ctx.IsSet(config.CFG_BOOTSTRAP) { return config.Daemon.Bootstrap } return ctx.Bool(config.CFG_BOOTSTRAP) }
func isDebugEnabled(ctx *cli.Context) bool { if ctx.App != nil && !ctx.IsSet(config.CFG_DEBUG) { return config.Daemon.Debug } return ctx.Bool(config.CFG_DEBUG) }