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.