Sometimes requests get displayed at the console, other times they do not.
Example:
(myproject) C:\Users\bgailer\mysite>manage.py runserver
0.0.0.0:8000
Performing system checks...
System check identified no issues (0 silenced).
You have 1 unapplied migration(s). Your project may not work properly
until you apply the migrations for app(s): auth.
Run 'python manage.py migrate' to apply them.
November 25, 2016 - 16:44:45
Django version 1.10.3, using settings 'mysite.settings'
Starting development server at
http://0.0.0.0:8000/
Quit the server with CTRL-BREAK.
Performing system checks...
System check identified no issues (0 silenced).
You have 1 unapplied migration(s). Your project may not work properly
until you apply the migrations for app(s): auth.
Run 'python manage.py migrate' to apply them.
November 25, 2016 - 16:46:45
Django version 1.10.3, using settings 'mysite.settings'
Starting development server at
http://0.0.0.0:8000/
Quit the server with CTRL-BREAK.
test[25/Nov/2016 16:46:50] "GET /vapi/ HTTP/1.1" 200 38
The first time server is started requests don't get displayed. I edit a
file to force a restart, and then requests get displayed.In each case
the view is executed, based on the browser display. Any ideas as to why
the inconsistent behavior?