I installed the registrar using the following code
def setup_logging(): import logging import logging.handlers import os
Prints log messages for both the file and the console (this is what I was after). The only problem is that the console message is red. This is distracting, since red makes everything look like an error (when it's just information). How can I change it so that console messages are in a different color?
Ideally, black for debugging and information, red for warning and above.
I use Eclipse and PyDev.
source share