From c7e61f1dc4a29af9184953949c3ed7e3272a7ac3 Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Tue, 26 Jan 2021 12:09:15 +0100 Subject: [PATCH] CLI: Display enabled plugins on startup --- Il2CppInspector.CLI/Program.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Il2CppInspector.CLI/Program.cs b/Il2CppInspector.CLI/Program.cs index 47d51de..63fde82 100644 --- a/Il2CppInspector.CLI/Program.cs +++ b/Il2CppInspector.CLI/Program.cs @@ -195,6 +195,10 @@ namespace Il2CppInspector.CLI if (!PluginOptions.ParsePluginOptions(options.PluginOptions, PluginOptions.GetPluginOptionTypes())) return 1; + // Show which plugins are in use + foreach (var plugin in PluginManager.EnabledPlugins) + Console.WriteLine("Using plugin: " + plugin.Name); + // Make sure at least one output is specified if the user has restricted outputs if (options.SpecifiedOutputsOnly && options.CSharpOutPath == null