More logging due to ambiguous errors

This commit is contained in:
barelyprofessional
2025-10-11 00:23:44 -05:00
parent c6560c4e34
commit f65decc560
@@ -627,6 +627,8 @@ public class Planes : ICommand
else
{
logger.Info($"Attempting to get planeboard info while generating main frames. Board: {useBoard} | Row: {row} | Column: {column} | Counter: {counter}");
try
{
switch (planesBoards[useBoard][row, counter2])
{
case 0:
@@ -640,6 +642,13 @@ public class Planes : ICommand
break;
}
}
catch (Exception e)
{
logger.Info("Threw exception while rendering planeboard");
logger.Error(e);
throw;
}
}
}
}
output += "[br]";