public static void SaveWarningToEventLogs(this string log, service service, eventID eventID) { EventLogs.SaveWarning(log, (service == service.Null ? (int?)null : (int)service), (eventID == eventID.Null ? (int?)null : (int)eventID)); }
public static void SaveErrorToEventLogs(this string log) { EventLogs.SaveError(log); }
public static void SaveWarningToEventLogs(this string log) { EventLogs.SaveWarning(log); }
public static void SaveInformationToEventLogs(this string log) { EventLogs.SaveInformation(log); }
public static void SaveErrorToEventLogs(this Exception ex) { EventLogs.SaveError(ex); }
public static void SaveErrorToEventLogs(this Exception ex, string user_message) { EventLogs.SaveError(ex, user_message); }
public static void SaveErrorToEventLogs(this Exception ex, service service, eventID eventID) { EventLogs.SaveError(ex, (service == service.Null ? (int?)null : (int)service), (eventID == eventID.Null ? (int?)null : (int)eventID)); }