Skip to content
Snippets Groups Projects
Commit 2f509f3f authored by Brandon Rodriguez's avatar Brandon Rodriguez
Browse files

Remove leftover logging statements

parent 18a1dae6
Branches
No related merge requests found
...@@ -150,10 +150,6 @@ class StateMachineGraph(DirectedGraph): ...@@ -150,10 +150,6 @@ class StateMachineGraph(DirectedGraph):
if position[1] < shortest_y[0]: if position[1] < shortest_y[0]:
shortest_y = (position[1], node) 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. # 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: if shortest_x[0] > 10:
shortest_x[1].x_coord = 10 shortest_x[1].x_coord = 10
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment