#Where I can see django runtime logs just like in heroku
4 messages · Page 1 of 1 (latest)
You can view runtime logs by using the command line interface (CLI). You can use the command "python manage.py makemigrations" to make Django running.
⚠️ experimental feature
Can you elaborate it further?
runtime logs will be in STDOUT (the logs tab on the deployment) unless you have a different logging handler configured
https://docs.djangoproject.com/en/4.1/topics/logging/
this covers the basics but essentially you can define a root or '' logger to capture everything then send it to console which is what you'll see in realtime