From 4e10bcdcfcfa9a2723f85db70a56b3c1f11eadbd Mon Sep 17 00:00:00 2001 From: KingLuigi4932 Date: Fri, 1 Sep 2017 00:04:08 -0700 Subject: [PATCH] Update FileImpl.cs --- source/Cosmos.System2_Plugs/System/IO/FileImpl.cs | 2 ++ 1 file changed, 2 insertions(+) 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); }