LogInformation

This commit is contained in:
Mike Phares 2024-05-21 18:59:37 -07:00
parent 2661c4174c
commit dc1b0e3efd

View File

@ -35,10 +35,10 @@ public class Program
logger?.LogError(ex, "Error!");
}
if (silentIndex > -1)
logger?.LogDebug("Done. Bye");
logger?.LogInformation("Done. Bye");
else
{
logger?.LogDebug("Done. Press 'Enter' to end");
logger?.LogInformation("Done. Press 'Enter' to end");
_ = Console.ReadLine();
}
}