Nodejs on Azure where is output of the console log

developer7788 picture developer7788 · Apr 11, 2018 · Viewed 10.3k times · Source

I deployed a nodejs web app on azure as an App Service

How do i see the console.log from my application?

Answer

mackysassr picture mackysassr · Sep 12, 2018

You can tail the log with the Azure CLI...

$ az webapp log tail --name <name of webapp> --resource-group <name of resource group>

More info here