1 private static void Console(string msg) 2 { 3 if ((0 != 0) || msg.StartsWith("[INFO] ")) 4 { 5 Debug.Log(msg); 6 } 7 else if (msg.StartsWith("[ERROR] ")) 8 { 9 Debug.LogError(msg); 10 } 11 else if (msg.StartsWith("[EXCEPTION] ")) 12 { 13 Debug.LogError(msg); 14 } 15 else if (msg.StartsWith("[WARN] ")) 16 { 17 Debug.LogWarning(msg); 18 } 19 }
时间: 2024-10-11 11:11:28