From 9eea5cd4d5aa094dac42923390eda1e30c8adf32 Mon Sep 17 00:00:00 2001 From: Cat Flynn Date: Mon, 15 Feb 2021 23:11:29 +0000 Subject: [PATCH] add log that should have been there in the first place --- game/Assets/Scripts/Dialogue/DialogueDatabase.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game/Assets/Scripts/Dialogue/DialogueDatabase.cs b/game/Assets/Scripts/Dialogue/DialogueDatabase.cs index 4b54fd2..c23fa36 100644 --- a/game/Assets/Scripts/Dialogue/DialogueDatabase.cs +++ b/game/Assets/Scripts/Dialogue/DialogueDatabase.cs @@ -61,9 +61,11 @@ public static partial class DialogueDatabase return 1; } + Debug.Log($":: importing dialogue"); var sb = new StringBuilder(); foreach (var row in values) { + Debug.Log($"{row[0]} {row[1]}"); sb.AppendLine($"{row[0]},{row[1]},"); }