Parcourir la source

Remove unneeded file log

ghorsington il y a 4 ans
Parent
commit
82c4e19ad8
1 fichiers modifiés avec 0 ajouts et 2 suppressions
  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));
 		}