public void Init(HttpApplication context)
        {
            if (webLogger == null)
                return;

            context.BeginRequest += context_BeginRequest;
            context.Error += context_Error;

            EventHandlerTaskAsyncHelper asyncHelper = new EventHandlerTaskAsyncHelper(context_LogRequest);
            context.AddOnLogRequestAsync(asyncHelper.BeginEventHandler, asyncHelper.EndEventHandler);
        }