# HG changeset patch # User Jason Maltzen # Date 2015-12-23 23:53:52 # Node ID 53db4d500e13f79b7e379f62ddcf1ecfe6e34583 # Parent 2481742fac33fd6e72230fbc69620e1c34f0b73b Remove debug print output 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; }