Make user logs more accurate

This commit is contained in:
Matt Nadareski
2026-04-17 08:48:08 -04:00
parent 024200ebc4
commit ecd4e7d1df
2 changed files with 5 additions and 5 deletions

View File

@@ -691,12 +691,12 @@ namespace SabreTools.Metadata.DatFiles
// If the sorted type isn't the same, we want to sort the dictionary accordingly
if (_buckets.GroupedBy != bucketBy && bucketBy != ItemKey.NULL)
{
_logger.User($"Organizing roms by {bucketBy}");
_logger.User($"Grouping roms by {bucketBy}");
PerformBucketing(bucketBy, lower, norename);
}
// Sort the dictionary to be consistent
_logger.User($"Sorting roms by {bucketBy}");
// Sort the groupings to be consistent
_logger.User("Sorting items");
PerformSorting(norename);
}

View File

@@ -377,12 +377,12 @@ namespace SabreTools.Metadata.DatFiles
// If the sorted type isn't the same, we want to sort the dictionary accordingly
if (_bucketedBy != bucketBy && bucketBy != ItemKey.NULL)
{
_logger.User($"Organizing roms by {bucketBy}");
_logger.User($"Grouping roms by {bucketBy}");
PerformBucketing(bucketBy, lower, norename);
}
// Sort the dictionary to be consistent
_logger.User($"Sorting roms by {bucketBy}");
_logger.User("Sorting items");
PerformSorting(norename);
}