public bool WriteLog(string _log, System.Diagnostics.EventLogEntryType _logType) { if (_dbLogwriter != null) { return(_dbLogwriter.WriteLog(_log, _logType)); } return(false); }
public static bool WriteLog(string _msg, EventLogEntryType _type) { if (_ics_SystemLog != null) { return(_ics_SystemLog.WriteLog(_msg, _type)); } return(true); }