mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[ALL] Use params variant for logging
This commit is contained in:
@@ -679,14 +679,14 @@ namespace SabreTools.Library.Dats
|
||||
// If the current item exactly matches the last item, then we don't add it
|
||||
if ((datItem.GetDuplicateStatus(lastItem) & DupeType.All) != 0)
|
||||
{
|
||||
Globals.Logger.Verbose("Exact duplicate found for '" + datItem.Name + "'");
|
||||
Globals.Logger.Verbose("Exact duplicate found for '{0}'", datItem.Name);
|
||||
continue;
|
||||
}
|
||||
|
||||
// If the current name matches the previous name, rename the current item
|
||||
else if (datItem.Name == lastItem.Name)
|
||||
{
|
||||
Globals.Logger.Verbose("Name duplicate found for '" + datItem.Name + "'");
|
||||
Globals.Logger.Verbose("Name duplicate found for '{0}'", datItem.Name);
|
||||
|
||||
if (datItem.Type == ItemType.Disk)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user