diff --git a/RecipeGenerator.cs b/RecipeGenerator.cs --- a/RecipeGenerator.cs +++ b/RecipeGenerator.cs @@ -510,17 +510,17 @@ namespace DesertPaintLab } } } - else - { - string msg = String.Format("Recipe is invalid ({0} ingredients)\n", recipe.Ingredients.Count); - foreach (PaintRecipe.RecipeIngredient ingr in recipe.Ingredients) - { - msg += String.Format(" -> {0} {1}", ingr.quantity, ingr.name); - } - lock (workerLock) { - Console.WriteLine(msg); - } - } + //else + //{ + // string msg = String.Format("Recipe is invalid ({0} ingredients)\n", recipe.Ingredients.Count); + // foreach (PaintRecipe.RecipeIngredient ingr in recipe.Ingredients) + // { + // msg += String.Format(" -> {0} {1}", ingr.quantity, ingr.name); + // } + // lock (workerLock) { + // Console.WriteLine(msg); + // } + //} return discarded; }