Beispiel #1
0
 /// <summary>
 /// add error to log, using IErrorLog
 /// </summary>
 public static void AddErrorLogEntry(String AErrorCode,
                                     String AContext,
                                     String AMessageLine1,
                                     String AMessageLine2,
                                     String AMessageLine3,
                                     Int32 AProcessID,
                                     String AUserID)
 {
     if (UErrorLog != null)
     {
         UErrorLog.AddErrorLogEntry(AErrorCode,
                                    AContext,
                                    AMessageLine1,
                                    AMessageLine2,
                                    AMessageLine3,
                                    AUserID,
                                    AProcessID);
     }
 }