def main(): # Trigger cleanup on SIGTERM and SIGHUP signal(SIGTERM, exit_handler) signal(SIGHUP, exit_handler) cli_plugins = lago.plugins.load_plugins( lago.plugins.PLUGIN_ENTRY_POINTS['cli']) out_plugins = lago.plugins.load_plugins( lago.plugins.PLUGIN_ENTRY_POINTS['out']) parser = create_parser( cli_plugins=cli_plugins, out_plugins=out_plugins, ) args = parser.parse_args() if args.verb is None: parser.print_help() sys.exit(1) config.update_args(args) logging.basicConfig(level=logging.DEBUG) logging.root.handlers = [ log_utils.TaskHandler(task_tree_depth=args.logdepth, level=getattr(logging, args.loglevel.upper()), dump_level=logging.ERROR, formatter=log_utils.ColorFormatter( fmt='%(msg)s', )) ] logging.captureWarnings(True) if args.ignore_warnings: logging.getLogger('py.warnings').setLevel(logging.ERROR) else: warnings.formatwarning = lambda message, *args, **kwargs: message args.out_format = out_plugins[args.out_format] if args.prefix_path: warnings.warn( 'The option --prefix-path is going to be deprecated, use ' '--workdir and --prefix instead', DeprecationWarning, ) try: cli_plugins[args.verb].do_run(args) except utils.LagoException as e: LOGGER.error(getattr(e, 'message', str(e))) LOGGER.debug(e, exc_info=True) sys.exit(2) except Exception: LOGGER.exception('Error occured, aborting') sys.exit(1)
def main(): # Trigger cleanup on SIGTERM and SIGHUP signal(SIGTERM, exit_handler) signal(SIGHUP, exit_handler) cli_plugins = lago.plugins.load_plugins( lago.plugins.PLUGIN_ENTRY_POINTS['cli'] ) out_plugins = lago.plugins.load_plugins( lago.plugins.PLUGIN_ENTRY_POINTS['out'] ) parser = create_parser( cli_plugins=cli_plugins, out_plugins=out_plugins, ) args = parser.parse_args() config.update_args(args) logging.basicConfig(level=logging.DEBUG) logging.root.handlers = [ log_utils.TaskHandler( task_tree_depth=args.logdepth, level=getattr(logging, args.loglevel.upper()), dump_level=logging.ERROR, formatter=log_utils.ColorFormatter(fmt='%(msg)s', ) ) ] logging.captureWarnings(True) if args.ignore_warnings: logging.getLogger('py.warnings').setLevel(logging.ERROR) else: warnings.formatwarning = lambda message, *args, **kwargs: message args.out_format = out_plugins[args.out_format] if args.prefix_path: warnings.warn( 'The option --prefix-path is going to be deprecated, use ' '--workdir and --prefix instead', DeprecationWarning, ) try: cli_plugins[args.verb].do_run(args) except utils.LagoException as e: LOGGER.error(e.message) LOGGER.debug(e, exc_info=True) sys.exit(2) except Exception: LOGGER.exception('Error occured, aborting') sys.exit(1)
def main(): cli_plugins = lago.plugins.load_plugins( lago.plugins.PLUGIN_ENTRY_POINTS['cli'] ) out_plugins = lago.plugins.load_plugins( lago.plugins.PLUGIN_ENTRY_POINTS['out'] ) parser = create_parser( cli_plugins=cli_plugins, out_plugins=out_plugins, ) args = parser.parse_args() config.update_args(args) logging.basicConfig(level=logging.DEBUG) logging.root.handlers = [ log_utils.TaskHandler( task_tree_depth=args.logdepth, level=getattr(logging, args.loglevel.upper()), dump_level=logging.ERROR, formatter=log_utils.ColorFormatter( fmt='%(msg)s', ) ) ] logging.captureWarnings(True) if args.ignore_warnings: logging.getLogger('py.warnings').setLevel(logging.ERROR) else: warnings.formatwarning = lambda message, *args, **kwargs: message check_deps() check_group_membership() args.out_format = out_plugins[args.out_format] if args.prefix_path: warnings.warn( 'The option --prefix-path is going to be deprecated, use ' '--workdir and --prefix instead', DeprecationWarning, ) try: cli_plugins[args.verb].do_run(args) except Exception: LOGGER.exception('Error occured, aborting') sys.exit(1)