Liberi
An exergame built for kids with CP!
DebugManager.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.IO;
4 using System;
5 
10 public class DebugManager : MonoBehaviour
11 {
16  public string[] IgnoreList;
17 
18  static StreamWriter _logWriter;
19  string _path;
20 
21  string _secret;
22 
23  void Awake ()
24  {
25  Directory.CreateDirectory(Path.GetFullPath(Application.dataPath + "/../DebugLogs/"));
26 
27  _path = Path.GetFullPath(string.Format("DebugLogs/Log_{0:yyyy-MM-dd_HH-mm-ss}.log", DateTime.Now));
28 
29  _logWriter = File.CreateText(_path);
30  _logWriter.AutoFlush = true;
31  Application.RegisterLogCallback(HandleLog);
32  }
33 
34  void HandleLog(string logString, string stackTrace, LogType type)
35  {
36  if (IgnoreList != null)
37  {
38  for (int i = 0; i < IgnoreList.Length; i++)
39  {
40  if (stackTrace.Contains(IgnoreList[i]))
41  return;
42  }
43  }
44 
45  if (_logWriter != null)
46  {
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));
49  }
50  }
51 
52  public static void Log(string s)
53  {
54  if (_logWriter != null)
55  _logWriter.WriteLine(string.Format("[{0:HH:mm:ss}]{1}", DateTime.Now, s));
56  }
57 
58  void OnDestroy ()
59  {
60  _logWriter.Dispose();
61 
62  FileInfo fInfo = new FileInfo(_path);
63 
64  if (fInfo.Exists && fInfo.Length == 0)
65  File.Delete(_path);
66  }
67 }
string[] IgnoreList
A list of strings which will be ignored (not logged) if they are contained in the stack trace...
Definition: DebugManager.cs:16
A class that manages the DebugLogs. Creates a file for logging Exceptions thrown by Unity as well as ...
Definition: DebugManager.cs:10