Skip to content

Commit

Permalink
Cosmetic log enhancements
Browse files Browse the repository at this point in the history
Align one table entry better and change a log entry.
  • Loading branch information
glima authored and squirrelsc committed Jul 10, 2021
1 parent 08065dc commit 4bebeb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lisa/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def _output_results(self, test_results: List[TestResult]) -> None:
result_count_dict[test_result.status] = result_count

self._log.info("test result summary")
self._log.info(f" TOTAL : {len(test_results)}")
self._log.info(f" TOTAL : {len(test_results)}")
for key in TestStatus:
count = result_count_dict.get(key, 0)
if key == TestStatus.ATTEMPTED and count == 0:
Expand Down
2 changes: 1 addition & 1 deletion lisa/util/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def import_package(
if enable_log:
log: Optional[Logger] = get_logger("init", "module")
assert log
log.info(f"loading extension from {path}")
log.info(f"loading Python extensions from {path}")
else:
log = None

Expand Down

0 comments on commit 4bebeb1

Please sign in to comment.