Log the system being used, in case it came from config

This commit is contained in:
Matt Nadareski
2026-01-30 08:45:13 -05:00
parent 57750295fb
commit 3f61957715
3 changed files with 7 additions and 0 deletions

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)
{