public static void AddSysEvent(Exception e, string sCustTimeStampPart = "") { string sException = "RootFrame_NavigationFailed...\n\nMessage:\n" + e.Message + "\n\nStack Trace:\n" + e.StackTrace; RscStore_IsoStore.AddSysEvent(sException, true, sCustTimeStampPart); }
public static void AddSysEvent(string sText, bool bErr = false, string sCustTimeStampPart = "") { RscStore_IsoStore.AddSysEvent(sText, bErr, sCustTimeStampPart); }