标签:style blog color io ar sp div art c
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 }
标签:style blog color io ar sp div art c
原文地址:http://www.cnblogs.com/quinsmpang/p/4002970.html