/// <summary>
 /// manually write an exception to our standard exception log
 /// </summary>
 public static void LogException(Exception ex)
 {
     try
     {
         if (ErrorModule != null)
         {
             ErrorModule.LogException(ex, HttpContext.Current);
         }
     }
     catch
     {
         /* Do nothing */
     }
 }