I deployed a nodejs web app on azure as an App Service
How do i see the console.log from my application?
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