From bb03bdd628140d27fb11738a33f3ef7fba8bc114 Mon Sep 17 00:00:00 2001 From: Michael Pivato Date: Thu, 24 Jan 2019 16:15:34 +1030 Subject: [PATCH] Change debug messages --- DecisionSystem/CentralisedDecision/ballotvoter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DecisionSystem/CentralisedDecision/ballotvoter.py b/DecisionSystem/CentralisedDecision/ballotvoter.py index 48552ed..b5b2e47 100644 --- a/DecisionSystem/CentralisedDecision/ballotvoter.py +++ b/DecisionSystem/CentralisedDecision/ballotvoter.py @@ -51,11 +51,11 @@ class BallotVoter: def submit_vote(self): v = self.on_vote() if v == None: - print('Could not vote on the frame') + print('Could not get vote') return print("Got Vote") vote = SubmitVote(v, self.messenger.id) - print('created vote') + print('Created Vote Message') self.messenger.broadcast_message(self.messenger.swarm, vote.serialise()) print('published vote')