diff --git a/CHANGELIST.md b/CHANGELIST.md index ffb9e437..7488b5c1 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -115,6 +115,7 @@ - Standardize PS1-5 outputs and parsing (Deterous) - Update Redumper to build 371 - Tools always run in separate window +- Move ConsoleLogger to Check CLI ### 3.1.9a (2024-05-21) diff --git a/MPF.Core/ConsoleLogger.cs b/MPF.Check/ConsoleLogger.cs similarity index 94% rename from MPF.Core/ConsoleLogger.cs rename to MPF.Check/ConsoleLogger.cs index 476f4670..f1da818f 100644 --- a/MPF.Core/ConsoleLogger.cs +++ b/MPF.Check/ConsoleLogger.cs @@ -1,7 +1,8 @@ using System; using BinaryObjectScanner; +using MPF.Core; -namespace MPF.Core +namespace MPF.Check { public static class ConsoleLogger { diff --git a/MPF.Frontend/ViewModels/CheckDumpViewModel.cs b/MPF.Frontend/ViewModels/CheckDumpViewModel.cs index 2feea694..0b6b89e5 100644 --- a/MPF.Frontend/ViewModels/CheckDumpViewModel.cs +++ b/MPF.Frontend/ViewModels/CheckDumpViewModel.cs @@ -463,9 +463,7 @@ namespace MPF.Frontend.ViewModels // Make new Progress objects var resultProgress = new Progress(); - resultProgress.ProgressChanged += ConsoleLogger.ProgressUpdated; var protectionProgress = new Progress(); - protectionProgress.ProgressChanged += ConsoleLogger.ProgressUpdated; // Finally, attempt to do the output dance var result = await env.VerifyAndSaveDumpOutput(resultProgress, protectionProgress, processUserInfo);