From 30531635f225f689c0e199268e4a8c24310fe991 Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 18 Jun 2026 16:42:39 -0300 Subject: [PATCH] style?: add extra logging --- src/dumper/dumper.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/dumper/dumper.cs b/src/dumper/dumper.cs index 576737c..7f0e1aa 100644 --- a/src/dumper/dumper.cs +++ b/src/dumper/dumper.cs @@ -159,10 +159,12 @@ class Dumper if (_dataPak == null || _provider == null) throw new InvalidOperationException("Attempted to call dump function without dumper initialization"); + _log.Info("Dumping character icons"); + foreach (CharacterInfo info in _characterMap.Values) - { ExportIcon(info.iconFilePath, "/character-icons/"); - } + + _log.Info("Dumped all character icons"); return; }