Skip to content

Commit

Permalink
logs to better track CI issues, sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
McJones committed Feb 8, 2024
1 parent 284f975 commit dd27c7e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Editor/Importers/YarnProjectImporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -560,8 +560,12 @@ private void AddStringTableEntries(CompilationResult compilationResult, StringTa

var defaultCulture = new System.Globalization.CultureInfo(project.BaseLanguage);

Debug.LogWarning($"Looking for \"{project.BaseLanguage}\"");
Debug.LogWarning($"Will be checking {unityLocalisationStringTableCollection.StringTables.Count()} tables");

foreach (var table in unityLocalisationStringTableCollection.StringTables)
{
Debug.LogWarning($"Table is \"{table.LocaleIdentifier.CultureInfo}\"");
if (table.LocaleIdentifier.CultureInfo != defaultCulture)
{
var neutralTable = table.LocaleIdentifier.CultureInfo.IsNeutralCulture
Expand Down

0 comments on commit dd27c7e

Please sign in to comment.