1👍
✅
The getLogger
alias was removed in this commit, so the following import will fail in Django 1.9
from django.utils.log import getLogger
I think you should be able to import getLogger
from the Python module directly.
from logging import getLogger
Source:stackexchange.com