As simple as print statements, with more options to choose from!
Installing EasyLog is super easy.
Download easylog.py below.
Drop the file into the same folder as your python project.
Include the line import easylog in your code.
That's it! You're done.
easylog.pos(text)
This will send a success message into the console, marked in green.
easylog.err(text)
This will send a error message into the console, marked in red.
easylog.crit(text)
This will send a critical error into the console, marked in bright red.
easylog.log(text)
This will send a log message into the console, marked in purple.
easylog.info(text)
This will send an info message into the console, marked in gray.
easylog.warn(text)
This will send a warn message into the console, marked in orange.
easylog.debug(text)
This will send a debug message into the console, marked in blue.