Starting using PyCharm IDE for Django development you migt face with issue that default output of the PyCharm “Run Configuration” or “Services” panes colored by red regardless is it error or info line.

pycharm_runconfiguration_red_coloring

You need to add this file colored_logger.py to the app directory (same directory where settings.py stored) and import it inside the settings.py file

import app.colored_logger

Your output will become

pycharm_runconfiguration_fixed_coloring