Example #1
0
 public static long SaveCriticalToDB(this string log)
 {
     return(DBLogs.SaveCritical(log));
 }
Example #2
0
 public static long SaveErrorToDB(this string log)
 {
     return(DBLogs.SaveError(log));
 }
Example #3
0
 public static long SaveErrorToDB(this string log, service service, eventID eventID)
 {
     return(DBLogs.SaveError(log, (service == service.Null ? (int?)null : (int)service), (eventID == eventID.Null ? (int?)null : (int)eventID)));
 }
Example #4
0
 public static long SaveWarningToDB(this string log)
 {
     return(DBLogs.SaveWarning(log));
 }
Example #5
0
 public static long SaveInformationToDB(this string log)
 {
     return(DBLogs.SaveInformation(log));
 }
Example #6
0
 public static long SaveErrorToDB(this Exception ex)
 {
     return(DBLogs.SaveError(ex));
 }
Example #7
0
 public static long SaveErrorToDB(this Exception ex, string user_message)
 {
     return(DBLogs.SaveError(ex, user_message));
 }
Example #8
0
 public static long SaveErrorToDB(this Exception ex, service service, eventID eventID)
 {
     return(DBLogs.SaveError(ex, (service == service.Null ? (int?)null : (int)service), (eventID == eventID.Null ? (int?)null : (int)eventID)));
 }