Searched refs:fmt_args (Results 1 – 1 of 1) sorted by relevance
/tools/asuite/atest/ |
D | atest_utils.py | 612 prefix: str, color: int, msg: Any, *fmt_args: list[Any] 620 if not fmt_args: 624 evaluated_msg = msg % fmt_args 631 def print_and_log_error(msg, *fmt_args): argument 638 logging.error(msg, *fmt_args) 639 _print_to_console('Error: ', constants.RED, msg, *fmt_args) 642 def print_and_log_warning(msg, *fmt_args): argument 649 logging.warning(msg, *fmt_args) 650 _print_to_console('Warning: ', constants.YELLOW, msg, *fmt_args) 653 def print_and_log_info(msg, *fmt_args): argument [all …]
|