소스 검색

Remove unneeded file log

ghorsington 4 년 전
부모
커밋
82c4e19ad8
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      BepInEx/Logging/UnityLogSource.cs

+ 0 - 2
BepInEx/Logging/UnityLogSource.cs

@@ -80,8 +80,6 @@ namespace BepInEx.Logging
 			if (type == LogType.Exception)
 				message += $"\nStack trace:\n{stackTrace}";
 			
-			File.WriteAllText("unity.log", $"{message}\n");
-
 			InternalUnityLogMessage?.Invoke(null, new LogEventArgs(message, logLevel, null));
 		}