Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Hameds/6373afcae7d2d317aa16db4d2ca8f524 to your computer and use it in GitHub Desktop.
Save Hameds/6373afcae7d2d317aa16db4d2ca8f524 to your computer and use it in GitHub Desktop.
automatically log unhandled exceptions in ASP.NET project using NLog
protected void Application_Error()
{
Exception lastException = Server.GetLastError();
NLog.Logger logger = NLog.LogManager.GetCurrentClassLogger();
logger.Fatal(lastException);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment