From 3d6d5ed162e206f83c89fdb8c03642b74ecbe1bf Mon Sep 17 00:00:00 2001 From: Tim Nugent Date: Thu, 8 Feb 2024 14:36:39 +1100 Subject: [PATCH] more logging pushes. I love ~~democracy~~CI --- Tests/Editor/UnityLocalisationTests.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Tests/Editor/UnityLocalisationTests.cs b/Tests/Editor/UnityLocalisationTests.cs index a4eaf0c9..c2246fa1 100644 --- a/Tests/Editor/UnityLocalisationTests.cs +++ b/Tests/Editor/UnityLocalisationTests.cs @@ -119,6 +119,10 @@ private static void CreateAndConfigureProject(string[] lines, string yarnName, s // flagging it as needing save and reimport EditorUtility.SetDirty(importer); importer.SaveAndReimport(); + + // now open and read out the contents of the json + var json = File.ReadAllText($"{AssetPath}/{projectName}.yarnproject"); + Debug.LogWarning(json); } public void Cleanup()