cisagov / gophish-tools

Helpful tools for interacting with a GoPhish phishing instance
Creative Commons Zero v1.0 Universal
42 stars 6 forks source link

Change all instances of print to use logging for output #41

Open nickviola opened 3 years ago

nickviola commented 3 years ago

💡 Summary

We are currently using print and logging for output in various places in the project. We should standardize this and use logging across the project for output consistency.

Motivation and context

There is currently variation in how outputs are handled in the project so this will create consistency and improve maintainability.

Implementation notes

Replace calls to print() with appropriate logging() usage.

Acceptance criteria

Logging is used in place of print across the entire project.