Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created June 19, 2017 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/11b187022dac81824122855df3f951e4 to your computer and use it in GitHub Desktop.
Save justinyoo/11b187022dac81824122855df3f951e4 to your computer and use it in GitHub Desktop.
Azure Functions Logging to Application Insights
public static class LoggerExtensions
{
public static void Info(this ILogger log, string message)
{
...
log.LogInformation(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment