summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Tests/TestCSV.cs
diff options
context:
space:
mode:
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Tests/TestCSV.cs')
-rw-r--r--WorldlineKeepers/Assets/Scripts/Tests/TestCSV.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/WorldlineKeepers/Assets/Scripts/Tests/TestCSV.cs b/WorldlineKeepers/Assets/Scripts/Tests/TestCSV.cs
index b24a8c7..09f810c 100644
--- a/WorldlineKeepers/Assets/Scripts/Tests/TestCSV.cs
+++ b/WorldlineKeepers/Assets/Scripts/Tests/TestCSV.cs
@@ -54,11 +54,11 @@ namespace WK
styled.AppendLine();
}
- Debug.Log(styled.ToString()); // Unity
+ LogHelper.Log(styled.ToString()); // Unity
Console.WriteLine(styled.ToString()); // C#
List<CharacterStatsMetadata> stats = CSVReader.Read<CharacterStatsMetadata>(text.text);
- Debug.Log(stats.Count);
+ LogHelper.Log(stats.Count);
}