So many terminal messages when starting django runserver
When I start
python manage.py runserver
I get many messages similar to the following:
File C:\Users\PC\OneDrive\Documents\DoseSaaS\DoseV3MasterSaaS\templates\admin\dose\tenant\change_list.html
first seen with mtime 1754471094.0
to the point it fills the terminal window.
How do I stop this? Could not find anything in the project and Copilot could not help.
Checked settings.py
and found nothing I could find. I looked for external services like watchdog but didn't find anything obvious.
It is caused by your autoreload
logging configuration. Change the logging level to INFO
in your settings.py
:
LOGGING = {
...
"django.utils.autoreload": {
"level": "INFO",
# ...
}
...
}