Skip to content

Commit

Permalink
Improve writeme check messages
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSouther committed Feb 27, 2024
1 parent 869b7dd commit 8b166fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .tools/readmes/multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ def main():
logging.info(f"Run complete.\nWrote: {done_list}\nSkipped: {skip_list}")
if len(failed) > 0:
failed_list = "\n\t".join(failed)
logging.warning(f"READMEs with incorrect formatting:\n\t{failed_list}")
logging.error(f"READMEs with incorrect formatting:\n\t{failed_list}")
logging.error("Rerun multi.py to update README links and sections.")
return len(failed)


Expand Down
2 changes: 1 addition & 1 deletion .tools/readmes/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _transform_crosses(self):
github = ver.get("github")
break
if github is None:
logger.warning(
logger.info(
"GitHub path not specified for cross-service example: %s %s.",
self.scanner.lang_name,
pre["title_abbrev"],
Expand Down

0 comments on commit 8b166fb

Please sign in to comment.