Skip to content

Commit

Permalink
Remove debug logging (#1825)
Browse files Browse the repository at this point in the history
  • Loading branch information
IhateTrains authored Mar 10, 2024
1 parent 424dc48 commit a5619d2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ImperatorToCK3/Outputter/CharactersOutputter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ private static void OutputCharactersDNA(string outputModName, IEnumerable<Charac
var path = Path.Combine("output", outputModName, "common/dna_data/IRToCK3_dna_data.txt");
using var output = FileOpeningHelper.OpenWriteWithRetries(path, System.Text.Encoding.UTF8);
foreach (var character in charactersWithDNA) {
Logger.Error($"OUTPUTTING DNA FOR CHARACTER {character.Id}");
var dna = character.DNA!;
output.WriteLine($"{dna.Id}={{");
output.WriteLine("\tportrait_info={");
Expand Down

0 comments on commit a5619d2

Please sign in to comment.