I have read several docs and tutorials about Azure App Services.
What i want to do is to see my application log (errors, exceptions, etc.) in azure portal.
I have read i need to configure something in order to store my logs to a Storage account, Log analytics, or Event Hub.
But, this command line shows me the logs !
az webapp log tail --name myapp --resource-group mygroup
So there is no need to configure anything in order to collect log, if this command can do it...
How can i do the same thing in azure portal ?
And how can i see more than 10 lines with this tail ?
Thanks