Skip to content

Commit e49efc4

Browse files
committed
github_issue_handler.py: add touch of logging
1 parent 3a87ac5 commit e49efc4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

qa/tools/apex_algorithm_qa_tools/github_issue_handler.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,9 @@ def main(self) -> None:
490490
i for i in all_existing_issues if i["title"] == issue_title
491491
]
492492

493+
logger.info(
494+
f"{scenario_id=} {outcome=} {failing_test=} {len(existing_issues)=}"
495+
)
493496
if failing_test and not existing_issues:
494497
logger.info(
495498
f"Creating new issue for newly failing scenario {scenario_id!r}"
@@ -509,6 +512,8 @@ def main(self) -> None:
509512
issue_number=issue_number,
510513
body=scenario_run_info.build_comment_body(),
511514
)
515+
else:
516+
logger.info(f"Nothing to do for {scenario_id=}")
512517

513518

514519
if __name__ == "__main__":

0 commit comments

Comments
 (0)