0

I tried to find a list of errors and exceptions that ELMAH can catch and logs but I couldn't . I wonder if ELMAH catches things like members logins or failed logins , request errors like 401 , 403 ,404 and ... .

thanks in advance .

mohsen dorparasti
  • 8,107
  • 7
  • 41
  • 61

1 Answers1

3

By default ELMAH will catch all unhandled exceptions.

You can also send ELMAH other exceptions that you wish (in your exception handler), but unless an exception was thrown and not handled it will not get logged by ELMAH.

Oded
  • 489,969
  • 99
  • 883
  • 1,009