anjanesh uwsgi doesn't log print statements.
My recommendation is that you use Django's logging framework for logging but if you must use print statements for debugging then you'll need to stop your uwsgi instance and then start the Django dev server on the app's assigned port, eg:
cd ~/apps/name_of_app
./stop
source env/bin/activate
cd myproject
# replace NNNNN with your port
python manage.py runserver NNNNN
The app will then run in the foreground and will include the output from your print statements.