18 static StreamWriter _logWriter;
25 Directory.CreateDirectory(Path.GetFullPath(Application.dataPath +
"/../DebugLogs/"));
27 _path = Path.GetFullPath(
string.Format(
"DebugLogs/Log_{0:yyyy-MM-dd_HH-mm-ss}.log", DateTime.Now));
29 _logWriter = File.CreateText(_path);
30 _logWriter.AutoFlush =
true;
31 Application.RegisterLogCallback(HandleLog);
34 void HandleLog(
string logString,
string stackTrace, LogType type)
36 if (IgnoreList != null)
38 for (
int i = 0; i < IgnoreList.Length; i++)
40 if (stackTrace.Contains(IgnoreList[i]))
45 if (_logWriter != null)
47 _logWriter.WriteLine(
string.Format(
"[{0:HH:mm:ss}]{1}", DateTime.Now, type.ToString() +
"; " + logString));
48 _logWriter.WriteLine(
string.Format(
"[{0:HH:mm:ss}]{1}", DateTime.Now, stackTrace));
52 public static void Log(
string s)
54 if (_logWriter != null)
55 _logWriter.WriteLine(
string.Format(
"[{0:HH:mm:ss}]{1}", DateTime.Now, s));
62 FileInfo fInfo =
new FileInfo(_path);
64 if (fInfo.Exists && fInfo.Length == 0)
string[] IgnoreList
A list of strings which will be ignored (not logged) if they are contained in the stack trace...
A class that manages the DebugLogs. Creates a file for logging Exceptions thrown by Unity as well as ...