You can retrieve the logs from your individual InRule App Service Web Apps via the Microsoft Azure CLI.
First, open a PowerShell prompt and use the Azure CLI to sign in to your Microsoft Azure subscription:
az login
If your Microsoft Azure account has access to multiple subscriptions, you will need to set your active subscription to where you create your Microsoft Azure resources:
# Example: az account set --subscription "Contoso Subscription 1"
az account set --subscription SUBSCRIPTION_NAME
Retrieve a zip file of logs from a specified Web App with the az webapp log download command:
# Example az webapp log download --name contoso-catalog-prod-wa --resource-group inrule-prod-rg
az webapp log download --name WEB_APP_NAME --resource-group RESOURCE_GROUP