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