Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using ELMAH (which is brilliant) is it possible to view extra information that you have added to an exception.

E.g.

Exception ex = new Exception("New exception to use ErrorSignal functionality");
ex.Data.Add("ExtraInfo", "Here is some extra information i would like to be displayed.");
ErrorSignal.FromCurrentContext().Raise(ex);

When I view the exception from elmah.axd it doesn’t seem to show the “ExtraInfo” key and value information, just the exception string.

share|improve this question

5 Answers

up vote 2 down vote accepted

No, it is not possible to view the extra information with the current 1.x releases.

share|improve this answer
4  
Atif, I highly recommend adding this feature! – Chris Marisic Sep 13 '10 at 17:08
Agreed and it's already a logged issue [1]. You can star the issue to follow updates on it. [1] code.google.com/p/elmah/issues/detail?id=162 – Atif Aziz Sep 22 '10 at 12:37
There's already a patch for it on that page I think but unfortunately it's not made it's way into the official release yet. – Nick G Aug 10 '12 at 9:16

My solution was to add the information to the Server Variables collection like so.

var context = HttpContext.Current;
context.Request.ServerVariables["ERROR_CALLING_WEBSERVICE_URI"] = uri;
Elmah.ErrorLog.GetDefault(context).Log(new Error(e, context))

Yes, I Think this is a hack.
For small amounts of additional data consider encapsulating the error as suggested by @Roma
However this method is especially useful where you have too much information to put into an 'encapsulated error message'

share|improve this answer
+1 genius recommendation – davidsleeps Sep 28 '12 at 0:53
1  
This method works before you raise an error, but you can also do it via the global.asax for all errors in void ErrorLog_Filtering(object sender, Elmah.ExceptionFilterEventArgs e) (before the Error object is created) and cast e.Context as HttpContext – Dave Transom Oct 16 '12 at 7:25
1  
Very good answer but this works only inside the Web app and not in the Domain of the application as you need to access the HTTP Context. – Gabriel Feb 24 at 13:02

The simple way to go around, is to encapsulate the error. The outer error will contain you custom message.

string msg = "my custom error message";

ErrorSignal.FromCurrentContext().Raise(
               new Elmah.ApplicationException(msg,ex));
share|improve this answer
+1 good suggestion for simple scenarios. – Myster Oct 16 '12 at 21:48

Ok, so I have been waiting for this to be included for too long now and decided to make a own fork of it and include the feature myself.

You can find it here: https://github.com/boena/elmah-with-exception-data

share|improve this answer
Do you have the code for it? The link that you have given above does not work. – Ajit Goel Feb 18 at 4:43
Oh snap, sorry. I have renamed it since then I see now. Hopefully you found it by browsing my repos otherwise you can find it link and if you also wan't the Log Analyzer Desktop app displaying the custom data it's here link – boena Apr 6 at 16:56

Since it is open source, you could just grab the project and customize Elmah for your own purposes:

http://code.google.com/p/elmah/

If you are using MSSQL

  • take a look at SqlErrorLog.cs

  • SQLServer.sql to generate your own database

I'm doing the same, but I need to add an extra randomly generated "error code" column and I'll be using exception data to track all the custom, session, form, cookie information that would normally be in the uber large xml field. I may change this to JSON, not sure yet.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.