From 09146fbb008f82c12f1c7ed9bbd0fca80174d961 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sat, 10 Aug 2024 13:04:03 -0400 Subject: [PATCH] Program: Clean up console log messages --- Rotationator/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rotationator/Program.cs b/Rotationator/Program.cs index 3dac013..0c003bb 100644 --- a/Rotationator/Program.cs +++ b/Rotationator/Program.cs @@ -88,8 +88,6 @@ command.Invoke(args); void Run(InvocationContext context) { - Console.WriteLine("run"); - string lastByamlPath = context.ParseResult.GetValueForArgument(lastByamlArg); string outputByamlPath = context.ParseResult.GetValueForArgument(outputByamlArg); int phaseLength = context.ParseResult.GetValueForOption(phaseLengthOption); @@ -234,6 +232,8 @@ void Run(InvocationContext context) { WriteIndented = true })); + + Console.WriteLine("Done!"); } //