예제 #1
0
파일: DebugManager.cs 프로젝트: cnscj/THSTG
 private void Awake()
 {
     if (isOpenLog)
     {
         Logger.GetInstance().logPath = Path.Combine(Application.persistentDataPath, string.Format(logName));
         Logger.GetInstance().maxKb   = logMaxKb;
         Logger.GetInstance().Open();
     }
     if (isOpenBugUpload)
     {
     }
 }
예제 #2
0
파일: DebugManager.cs 프로젝트: cnscj/THSTG
 private void OnDestroy()
 {
     Logger.GetInstance().Close();
 }