From 2f509f3f4bbe6029eb99bc090f41a5989aed648a Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Sat, 16 Nov 2019 22:43:14 -0500
Subject: [PATCH] Remove leftover logging statements

---
 resources/graphs/state_machine/graph.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/resources/graphs/state_machine/graph.py b/resources/graphs/state_machine/graph.py
index ea59992..687b4dd 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
-- 
GitLab