diff --git a/CHANGELIST.md b/CHANGELIST.md index 839258e2..403567c9 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -15,6 +15,7 @@ - Split path creation in OptionsLoader - Add unused Dreamdump execution context - Validate a system is provided for CLI applications +- Log the system being used, in case it came from config ### 3.6.0 (2025-11-28) diff --git a/MPF.CLI/Features/BaseFeature.cs b/MPF.CLI/Features/BaseFeature.cs index f6b85027..b410ca5a 100644 --- a/MPF.CLI/Features/BaseFeature.cs +++ b/MPF.CLI/Features/BaseFeature.cs @@ -104,6 +104,9 @@ namespace MPF.CLI.Features return false; } + // Log the system being used, in case it came from config + Console.WriteLine($"Using system: {System.LongName()}"); + // Validate the supplied credentials if (Options.RetrieveMatchInformation && !string.IsNullOrEmpty(Options.RedumpUsername) diff --git a/MPF.Check/Features/BaseFeature.cs b/MPF.Check/Features/BaseFeature.cs index e51d3aea..ed0136af 100644 --- a/MPF.Check/Features/BaseFeature.cs +++ b/MPF.Check/Features/BaseFeature.cs @@ -79,6 +79,9 @@ namespace MPF.Check.Features return false; } + // Log the system being used, in case it came from config + Console.WriteLine($"Using system: {System.LongName()}"); + // Validate a program is provided if (Options.InternalProgram == InternalProgram.NONE) {