Skip to content

Commit

Permalink
style(main): update file generation messages to use colored output
Browse files Browse the repository at this point in the history
  • Loading branch information
obeone committed May 21, 2024
1 parent e622015 commit f77334e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ def main():

markdown_path = os.path.join(output, f"{output_name}.md")
json_path = os.path.join(output, f"{output_name}.json")
logger.info(f"Markdown file generated at: {markdown_path}")
logger.info(f"JSON file generated at: {json_path}")
print(f"\033[94m Markdown file generated at: \033[0m", markdown_path)
print(f"\033[92m JSON file generated at: \033[0m", json_path)


if __name__ == "__main__":
Expand Down

0 comments on commit f77334e

Please sign in to comment.