File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 4
4
using System . Web . Mvc ;
5
5
using Exceptionless . Dependency ;
6
6
using Exceptionless . Web ;
7
- using Exceptionless . Web . Extensions ;
8
7
9
8
namespace Exceptionless . Mvc {
10
9
public class ExceptionlessModule : IHttpModule {
11
10
private HttpApplication _app ;
12
11
13
12
public virtual void Init ( HttpApplication app ) {
14
13
ExceptionlessClient . Default . Startup ( ) ;
15
- ExceptionlessClient . Default . RegisterHttpApplicationErrorHandler ( app ) ;
16
14
ExceptionlessClient . Default . Configuration . AddPlugin < ExceptionlessWebPlugin > ( ) ;
17
15
ExceptionlessClient . Default . Configuration . Resolver . Register < ILastReferenceIdManager , WebLastReferenceIdManager > ( ) ;
18
16
@@ -24,7 +22,6 @@ public virtual void Init(HttpApplication app) {
24
22
25
23
public void Dispose ( ) {
26
24
ExceptionlessClient . Default . Shutdown ( ) ;
27
- ExceptionlessClient . Default . UnregisterHttpApplicationErrorExceptionHandler ( _app ) ;
28
25
}
29
26
}
30
27
}
You can’t perform that action at this time.
0 commit comments