From f7cf937ae95fffc7c1f249d41d56856530f2a64b Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Thu, 3 Sep 2020 13:01:44 -0400 Subject: [PATCH] be quiet --- Libraries/UniversalEditor.Essential/Common/Reflection.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Libraries/UniversalEditor.Essential/Common/Reflection.cs b/Libraries/UniversalEditor.Essential/Common/Reflection.cs index 469bd214..ceb3fd84 100644 --- a/Libraries/UniversalEditor.Essential/Common/Reflection.cs +++ b/Libraries/UniversalEditor.Essential/Common/Reflection.cs @@ -101,7 +101,7 @@ namespace UniversalEditor.Common } catch (Exception ex) { - Console.WriteLine("Accessor could not be loaded ({0}): {1}", type.FullName, ex.Message); + // Console.WriteLine("Accessor could not be loaded ({0}): {1}", type.FullName, ex.Message); } } else if (mvarAvailableDataFormats == null && (type.IsSubclassOf(typeof(DataFormat)) && !type.IsAbstract)) @@ -118,7 +118,7 @@ namespace UniversalEditor.Common } catch (Exception ex) { - Console.WriteLine("DataFormat could not be loaded ({0}): {1}", type.FullName, ex.Message); + // Console.WriteLine("DataFormat could not be loaded ({0}): {1}", type.FullName, ex.Message); } } else if (mvarAvailableDocumentTemplates == null && (type.IsSubclassOf(typeof(DocumentTemplate)) && !type.IsAbstract)) @@ -241,7 +241,7 @@ namespace UniversalEditor.Common string path = paths[iPath]; if (!System.IO.Directory.Exists(path)) { - Console.WriteLine("skipping nonexistent directory {0}", path); + // Console.WriteLine("skipping nonexistent directory {0}", path); continue; } @@ -253,7 +253,7 @@ namespace UniversalEditor.Common for (int jFileName = 0; jFileName < XMLFileNames.Length; jFileName++) { string fileName = XMLFileNames[jFileName]; - Console.WriteLine("loading XML configuration file: {0} ", fileName); + // Console.WriteLine("loading XML configuration file: {0} ", fileName); #if !DEBUG try {