From ecf386005ebdd096ff863aa8180cb77cc45709a0 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 22 Jun 2016 20:55:48 -0700 Subject: [PATCH] [SimpleSort] Too verbose to the user, change this --- SimpleSort/SimpleSort.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SimpleSort/SimpleSort.cs b/SimpleSort/SimpleSort.cs index 272405a3..8ac9428d 100644 --- a/SimpleSort/SimpleSort.cs +++ b/SimpleSort/SimpleSort.cs @@ -379,7 +379,7 @@ namespace SabreTools // Try to find the matches to the file that was found List foundroms = RomTools.GetDuplicates(rom, _datdata); - _logger.User("File '" + input + "' had " + foundroms.Count + " matches in the DAT!"); + _logger.Log("File '" + input + "' had " + foundroms.Count + " matches in the DAT!"); foreach (Rom found in foundroms) { _logger.Log("Matched name: " + found.Name); @@ -425,7 +425,7 @@ namespace SabreTools // Try to find the matches to the file that was found List founddroms = RomTools.GetDuplicates(drom, _datdata); - _logger.User("File '" + newinput + "' had " + founddroms.Count + " matches in the DAT!"); + _logger.Log("File '" + newinput + "' had " + founddroms.Count + " matches in the DAT!"); foreach (Rom found in founddroms) { // First output the headerless rom @@ -508,7 +508,7 @@ namespace SabreTools { // Try to find the matches to the file that was found List foundroms = RomTools.GetDuplicates(rom, _datdata); - _logger.User("File '" + rom.Name + "' had " + foundroms.Count + " matches in the DAT!"); + _logger.Log("File '" + rom.Name + "' had " + foundroms.Count + " matches in the DAT!"); foreach (Rom found in foundroms) { if (_toFolder)