From 3f56167d868528b197e99f3f6b99bbec7b22f274 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Mon, 20 Jun 2022 02:52:54 +0100 Subject: [PATCH] Neaten Logging --- Program.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Program.cs b/Program.cs index 8f05204..6204d42 100644 --- a/Program.cs +++ b/Program.cs @@ -48,15 +48,13 @@ class Program if (args.Length < 2) { - Log.Error("Too Few Args"); + Log.Error("Too Few Args: Expected at least 2 but received {Count}",args.Length); return 1; } string _inputDirectory = args[0]; string _outputDirectory = args[1]; - Log.Debug("{_inputDirectory} , {_outputDirectory}",_inputDirectory,_outputDirectory); - Log.Debug("{a} , {b}",Directory.Exists(_inputDirectory),Directory.Exists(_outputDirectory)); if (!Directory.Exists(_inputDirectory)) {