diff --git a/resources/graphs/state_machine/graph.py b/resources/graphs/state_machine/graph.py
index ea59992d2cebea5b956497bd05fdd8397bcbcabe..687b4dd7996763398656cfab2d29aff59b7a140f 100644
--- a/resources/graphs/state_machine/graph.py
+++ b/resources/graphs/state_machine/graph.py
@@ -150,10 +150,6 @@ class StateMachineGraph(DirectedGraph):
                 if position[1] < shortest_y[0]:
                     shortest_y = (position[1], node)
 
-            logger.info('Node: {0}'.format(node))
-            logger.info('Node x: {0}'.format(node.x_coord))
-            logger.info('Node y: {0}'.format(node.y_coord))
-
         # Now that all nodes are mapped, adjust extreme node coords, so that all graphs will be roughly the same size.
         if shortest_x[0] > 10:
             shortest_x[1].x_coord = 10