We use the "Azure App Service deploy" task in a Azure Dev Ops Release pipeline.
This results in a deployed App Service with WEBSITE_RUN_FROM_PACKAGE = 1. On the whole this is fine but WEBSITE_RUN_FROM_PACKAGE set to 1 makes the contents of AppService uneditable via Kudu. That then means we cannot chnage LogLevel on the fly.
Surely being able to dynamically change LogLevel for AppInsights is standard requirement therefore it looks like we cannot use ZipDeploy.
Should we look into how we deploy the code to Azure Blob Storage? Do we really have to do that to be able to be able to change LogLevels without a redeploy?