public void Main(params string[] args) { var debug = (args.Length > 0)? (args[0] == "debug") : false; if (debug) { logger.Log(LogLevel.Info, "debug mode activated"); } logger.ShowDebug(debug); showProgramStartupInfo(); var ace = new ExperimentGame(logger, configuration); ace.RunExperiments(); }