def run(self) -> DefaultStat: logging.info(bold_yellow('Starting benchmark: {}\n'.format(self.name))) self.print_result_header() stat = self.execute() self.print_total_line(stat) return stat
def print_result_header(self) -> None: logging.info(bold_yellow(self.config.greeter_info)) super().print_result_header()