fixes print statement in catch for in LoadCustomPluginTypes

This commit is contained in:
Andrew Welker
2020-04-08 16:30:54 -06:00
parent 6de70a83f1
commit 158b2fc346

View File

@@ -368,7 +368,7 @@ namespace PepperDash.Essentials
}
catch (Exception e)
{
Debug.Console(2, "Error Loading Assembly: {0} Exception: (1) ", loadedAssembly.Name, e);
Debug.Console(2, "Error Loading Assembly: {0} Exception: {1} ", loadedAssembly.Name, e);
continue;
}
}