I deployed the node app as an azure app service. And turned on azure Application Logging (blob) with the Verbose log level and linked the blob storage account. But my node.js console.log and console.error do not appear in blob. I still keep getting stdout and stderr file in file system registry.
My iisnode.yml file has the following content -
nodeProcessCommandLine: "D:\Program Files (x86)\nodejs\6.3.0\node.exe" nodeProcessCountPerApplication: 2 loggingEnabled: true logDirectory: iisnode maxLogFiles: 100 devErrorsEnabled: true configOverrides: "iisnode.yml" asyncCompletionThreadCount: 20 flushResponse: true
source share