formatting

This commit is contained in:
Chomp 2022-01-14 11:51:57 +00:00
parent 06712c57a1
commit 2fa1e95281

View File

@ -15,6 +15,7 @@ namespace AssortUpdater
completeAssorts.Add(liveAssort); completeAssorts.Add(liveAssort);
} }
LoggingHelpers.LogSuccess($"{trader} Added {flattenedLiveAssorts.Count} items from live"); LoggingHelpers.LogSuccess($"{trader} Added {flattenedLiveAssorts.Count} items from live");
LoggingHelpers.LogNewLine();
// Check for missing existing assorts and add those // Check for missing existing assorts and add those
var ExistingItemCount = 0; var ExistingItemCount = 0;
@ -33,6 +34,7 @@ namespace AssortUpdater
ExistingItemCount++; ExistingItemCount++;
} }
LoggingHelpers.LogNewLine();
LoggingHelpers.LogSuccess($"{trader} Added {ExistingItemCount} existing items"); LoggingHelpers.LogSuccess($"{trader} Added {ExistingItemCount} existing items");
return completeAssorts; return completeAssorts;
} }