void RegisterStartupServices(IActivityMonitor m, SimpleServiceContainer startupServices)
            {
                m.Info($"Registering the Super Startup service.");
                bool willFail = startupServices.GetRequiredService <TotallyExternalStartupServiceThatActAsAConfiguratorOfTheWholeSystem>().EmitErrorLogSoThatConfigureServicesFails;

                startupServices.Add(new SuperStartupService(willFail));
            }