mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-19 20:53:50 +00:00
Make user logs more accurate
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user