diff --git a/binarycpython/utils/grid.py b/binarycpython/utils/grid.py
index 93ceafb7a2ebdd5bc2696af2bafc80741265d46f..f60a1dfe5168dfcae21e5f4f288044094b263d16 100644
--- a/binarycpython/utils/grid.py
+++ b/binarycpython/utils/grid.py
@@ -1942,14 +1942,14 @@ class Population:
             # TODO: think of whether this is a good method
             # code_string += indent * (depth + 2) + "if (self.grid_options['multiplicity'] >= 2): print('phasevol_q: ',phasevol_q); print('phasevol_log10per: ',phasevol_log10per);\n"
             # code_string += indent * (depth + 2) + "print('phasevol_lnm1: ',phasevol_lnm1); print('phasevol_multiplicity: ',phasevol_multiplicity);\n"
-            code_string += indent * (depth + 2) + "print(probabilities_list)\n"
-            code_string += indent * (depth + 2) + "print(parameter_dict)\n"
+            # code_string += indent * (depth + 2) + "print(probabilities_list)\n"
+            # code_string += indent * (depth + 2) + "print(parameter_dict)\n"
             code_string += indent * (depth + 2) + "yield(parameter_dict)\n"
 
         # If its a dry run, dont do anything with it
         else:
             # code_string += indent * (depth + 2) + "if (self.grid_options['multiplicity'] >= 2): print(phasevol_q)\n"
-            code_string += indent * (depth + 2) + "print(parameter_dict)\n"
+            # code_string += indent * (depth + 2) + "print(parameter_dict)\n"
             code_string += indent * (depth + 2) + "pass\n"
 
         code_string += indent * (depth + 1) + "#" * 40 + "\n"