Elmah log error page customization
c#, elmah, logging
Solution
Elmah is a single dll, so you have to download the source code, change rendering in ErroLogPage, ErrorDetailPage, rebuild, and deploy the modified assembly.
Or write a new custom display page that uses elmah errors directly stored in db/disk/etc.
Problem
I would like to use Elmah for logging of the operations in application and not just for errors (I know it, literally means error logging module). So, I would like to customize the default error view screen (../elmah.axd): I have wishes like below: - Change the Column Name "Error" for "Message" - Use html tags in the error message. For logging a custom information, I'm using a method like: ``` ErrorSignal.FromCurrentContext().Raise(new Elmah.ApplicationException(message)); ``` But it does show the message in a span tag and if I use any `<a href="">` or `<br />` or even `<` the result is as written and not seen as html attribute. The default page is below for visual understanding: