From 3f61957715ae2f49758f6f48de44e94e27d2abf0 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 30 Jan 2026 08:45:13 -0500 Subject: [PATCH] Log the system being used, in case it came from config --- CHANGELIST.md | 1 + MPF.CLI/Features/BaseFeature.cs | 3 +++ MPF.Check/Features/BaseFeature.cs | 3 +++ 3 files changed, 7 insertions(+) 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) {