diff --git a/binarycpython/utils/grid.py b/binarycpython/utils/grid.py
index 7e7070077302d71814dba7eea8d02b1ee19b96be..d151492303052fb89584cec60017dfa6bf47b08d 100644
--- a/binarycpython/utils/grid.py
+++ b/binarycpython/utils/grid.py
@@ -887,9 +887,18 @@ class Population:
         # TODO: build in method to handle with the HPC.
         # Continously fill the queue
         for system_number, system_dict in enumerate(generator):
-            # stream_logger.debug(f"producing: {system_number}")  # DEBUG
+            # Put job in queue
             job_queue.put((system_number, system_dict))
 
+            # Print some info
+            # stream_logger.debug(f"producing: {system_number}")  # DEBUG
+            verbose_print(
+                "Process {} is handling system {}".format(ID, system_number),
+                self.grid_options["verbosity"],
+                2,
+            )
+
+
             # Print current size
             # print("Current size: {}".format(save_que.qsize()))