Ejemplo n.º 1
0
 public static long SaveCriticalToDB(this string log)
 {
     return(DBLogs.SaveCritical(log));
 }
Ejemplo n.º 2
0
 public static long SaveErrorToDB(this string log)
 {
     return(DBLogs.SaveError(log));
 }
Ejemplo n.º 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)));
 }
Ejemplo n.º 4
0
 public static long SaveWarningToDB(this string log)
 {
     return(DBLogs.SaveWarning(log));
 }
Ejemplo n.º 5
0
 public static long SaveInformationToDB(this string log)
 {
     return(DBLogs.SaveInformation(log));
 }
Ejemplo n.º 6
0
 public static long SaveErrorToDB(this Exception ex)
 {
     return(DBLogs.SaveError(ex));
 }
Ejemplo n.º 7
0
 public static long SaveErrorToDB(this Exception ex, string user_message)
 {
     return(DBLogs.SaveError(ex, user_message));
 }
Ejemplo n.º 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)));
 }