Azure function apps logs not showing
Azure function apps logs not showing
Azure function apps logs not showing
Re: Azure function apps logs not showing
The log window is a bit fragile and doesn't always show the logs. However, logs are also written to the log files.
You can access these logs from the Kudu console:
[https://[your-function-app].scm.azurewebsites.net/](https://[your-function-app].scm.azurewebsites.net/)
From the menu, select Debug console > CMD
On the list of files, go into LogFiles > Application > Functions > Function > [Name of your function]
There you will see a list of log files.
You can access these logs from the Kudu console:
[https://[your-function-app].scm.azurewebsites.net/](https://[your-function-app].scm.azurewebsites.net/)
From the menu, select Debug console > CMD
On the list of files, go into LogFiles > Application > Functions > Function > [Name of your function]
There you will see a list of log files.