Quantcast
Channel: context.log vs console.log in Azure function apps - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by Brian Rosamilia for context.log vs console.log in Azure function apps

You can redirect console.log to context.log with my npm package so you dont have to pass down the context everywhere.https://www.npmjs.com/package/azure-function-log-interceptSource here if you just...

View Article



Answer by Marie Hoeger for context.log vs console.log in Azure function apps

This documentation should answer your question :)In Functions, you use the context.log methods to write trace output to the console. In Functions v2.x, trace outputs using console.log are captured at...

View Article

context.log vs console.log in Azure function apps

In the nodejs examples for Azure function apps, there is a passed in context obj to the function and it is possible to do context.log in the same manner as you can with console.log to output...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images