Hi @tlcs ,
For container apps, those logs are located at https://<app-name>.scm.azurewebsites.net/api/logs/docker/zip
. You can learn more about accessing those logs on https://learn.microsoft.com/en-us/azure/app-service/troubleshoot-diagnostic-logs#access-log-files. There are also a series of diagnostic tools that you can leverage to determine what's going on. I suggest starting with Availability and Performance. If you're using a custom image, logging will be picked up from stdout
. However, if you're deploying your Python code into a Linux app service, then running az webapp log config --name <app-name> --resource-group <resource-group-name> --docker-container-logging filesystem
from Azure CLI or in your Cloud Shell should be sufficient to get the logging you need.