style?: add extra logging

This commit is contained in:
2026-06-18 16:42:39 -03:00
parent 70b38d3be7
commit 30531635f2
+4 -2
View File
@@ -159,10 +159,12 @@ class Dumper
if (_dataPak == null || _provider == null) if (_dataPak == null || _provider == null)
throw new InvalidOperationException("Attempted to call dump function without dumper initialization"); throw new InvalidOperationException("Attempted to call dump function without dumper initialization");
_log.Info("Dumping character icons");
foreach (CharacterInfo info in _characterMap.Values) foreach (CharacterInfo info in _characterMap.Values)
{
ExportIcon(info.iconFilePath, "/character-icons/"); ExportIcon(info.iconFilePath, "/character-icons/");
}
_log.Info("Dumped all character icons");
return; return;
} }