public static void LogAsync(RequestLog log)
 {
     Task.Factory.StartNew((u) =>
     {
         try
         {
             RequestLogService logService = new RequestLogService();
             if (log != null)
             {
                 logService.Log(log);
             }
         }
         catch
         {
         }
     },
                           log);
 }
        public static void LogAsync(RequestLog log)
        {
            Task.Factory.StartNew((u) =>
            {
                try
                {
                    RequestLogService logService = new RequestLogService();
                    if (log != null)
                    {
                        logService.Log(log);
                    }
                }
                catch
                {

                }
            },
                log);
        }