static void Internal_Log(string msg, LogColor logColor = LogColor.White) { if (EnableTime) { DateTime now = DateTime.Now; msg = now.ToString("HH:mm:ss.fff") + " " + msg; } if (console is UnityDebugerConsole && EnableColor) { msg = string.Format("<color=#{0}>{1}</color>", colors[logColor], msg); } if (console != null) { console.Log(msg); } else { var old = Console.ForegroundColor; Console.ForegroundColor = ConsoleColor.White; Console.WriteLine(msg); Console.ForegroundColor = old; } LogToFile(" [N]: " + msg); }
private static void Internal_Log(string msg, object context = null) { if (m_console != null) { m_console.Log(msg, context); } else { Console.WriteLine(msg); } }
private static void Internal_Log(string msg) { if (Debuger.EnableTime) { DateTime now = DateTime.Now; msg = now.ToString("HH:mm:ss.fff") + " " + msg; } if (m_console == null) { m_console = new NativeLogConsole(); } m_console.Log(msg); LogToFile("[I]" + msg); }
public static void Internal_Log(string msg, object context = null) { if (Debuger.EnableTime) { DateTime now = DateTime.Now; msg = now.ToString("HH:mm:ss.fff") + " " + msg; } if (m_console != null) { m_console.Log(msg, context); } else { var old = Console.ForegroundColor; Console.ForegroundColor = ConsoleColor.White; Console.WriteLine(msg); Console.ForegroundColor = old; } LogToFile("[I]" + msg); }