blob: 452587f752fc0b18ceb20a3a0be44debed1c9c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Web;
using Marina.Infrastructure.Logging.Interfaces;
using Marina.Task;
namespace Marina.Web {
public class GlobalApplication : HttpApplication {
public void Application_Start( object sender, EventArgs e ) {
ApplicationStartupTask.ApplicationBegin( );
Log.For(this).Informational("Application Startup completed");
}
public void Application_Error( object sender, EventArgs e ) {
Log.For( this ).Informational( "Unhandled error occurred" );
}
}
}
|