Hello,
We are using ELMAH.IO to log exceptions from the Web Service.
We have recently updated from 4.5.8 to 4.5.14
By some reason the 403 HTTP errors do not include any HTTP details anymore when sent to ELMAH.IO. They used to include that before. The details include URL, Cookes, and Server variables.
The LogManager is initialized in Global.asax.cs (Application_Start) like this:
var log4NetFactory = new Log4NetFactory(true);
LogManager.LogFactory = new ElmahLogFactory(log4NetFactory, this);
The error is thrown from the service method like this
throw HttpError.Forbidden(...);
I spoke with ELMA.IO support and they said that the errors before update were logged by ELMAH client and after the update they are logged by Log4Net client.
I cannot find any information about this in the Release Notes.
What changed?
Thank you,
Serge Matsevilo