feat(essentials): #835 comments out some debug messages to clean up console at startup

This commit is contained in:
Neil Dorin
2021-09-22 11:56:06 -06:00
parent 8d1f187643
commit 16db2663a6
3 changed files with 6 additions and 6 deletions

View File

@@ -123,7 +123,7 @@ namespace PepperDash.Essentials
/// <param name="fileName"></param>
static LoadedAssembly LoadAssembly(string filePath)
{
Debug.Console(2, "Attempting to load {0}", filePath);
//Debug.Console(2, "Attempting to load {0}", filePath);
var assembly = Assembly.LoadFrom(filePath);
if (assembly != null)
{