Hi @Hessel Wellema
If Azure Web App Log Stream is stuck on Connecting or shows This feature requires write permission to your appEnable Application Logging (Filesystem) This setting is required for logs to be streamed and turns off automatically after 12 hours.
Enable logging docs
Check Your Permissions Even Global Admins need a role that includes the Microsoft.Web/sites/publish/Action permission. Use Contributor or Website Contributor roles.
Check WEBSITE_LOCAL_CACHE_OPTION If this is set to Always, log streaming might not work. Set it to Off if needed.
Use Azure CLI as a Backup Run this command to stream logs from the command line.
az webapp log tail --name <app-name> --resource-group <resource-group-name>
Visit and check /LogFiles for real-time logs.
https://techcommunity.microsoft.com/blog/appsonazureblog/troubleshooting-log-stream-data-not-loadingpopulating-in-app-services/3944370
Let me know if you have any further assistances needed.