public static void Error(string str) { if (type == 0) { LoggerC.Error(str); } if (type == 1) { LoggerPanel.Error(str); } }
public static void Error(string str) { if (type == 0) { LoggerC.Error(str); } else { try { if (panel != null) { panel.Error(str); } } catch (Exception ex1) { AddLog(str + ex1.ToString()); } } }