Log.INFO vs. Log.DEBUG

I usually try to use it like this: DEBUG: Information interesting for Developers, when trying to debug a problem. INFO: Information interesting for Support staff trying to figure out the context of a given error WARN to FATAL: Problems and Errors depending on level of damage.

How to easily print ascii-art text?

pyfiglet – pure Python implementation of http://www.figlet.org pip install pyfiglet termcolor – helper functions for ANSI color formatting pip install termcolor colorama – multiplatform support (Windows) pip install colorama Example $ python print-warning.py | cat .___ ___. __ _______. _______. __ __ _______ __ | \/ | | | / | / || | | … Read more