diff --git a/source/Cosmos.System2_Plugs/System/IO/FileImpl.cs b/source/Cosmos.System2_Plugs/System/IO/FileImpl.cs index b66c46dbe..22ee26ebb 100644 --- a/source/Cosmos.System2_Plugs/System/IO/FileImpl.cs +++ b/source/Cosmos.System2_Plugs/System/IO/FileImpl.cs @@ -139,6 +139,8 @@ namespace Cosmos.System_Plugs.System.IO public static void WriteAllLines(string aFile, string[] contents) { string text = String.Join(Environment.NewLine, contents); + Global.mFileSystemDebugger.SendInternal("Writing contents"); + Global.mFileSystemDebugger.SendInternal(text); WriteAllText(aFile, text); }