From 8e317fbcba5bde414165c53ba5274228dd299bf4 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sun, 17 Nov 2019 01:32:24 -0500 Subject: [PATCH] Remove leftover debug logging statement --- resources/graphs/state_machine/graph.py | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/graphs/state_machine/graph.py b/resources/graphs/state_machine/graph.py index 687b4dd..4e39cc5 100644 --- a/resources/graphs/state_machine/graph.py +++ b/resources/graphs/state_machine/graph.py @@ -77,7 +77,6 @@ class StateMachineGraph(DirectedGraph): # Loop through all initial states, assigning y-coords based on a divided grid setup. # Grids are from top to bottom, to evenly distribute space to all start nodes. - logger.info('Initial states: {0}'.format(self._initial_states)) initial_state_count = len(self._initial_states) state_index = 1 grid_length = max_direction / initial_state_count -- GitLab