diff --git a/rangevote.js b/rangevote.js index 2692ae9..c23b339 100644 --- a/rangevote.js +++ b/rangevote.js @@ -140,7 +140,7 @@ function PlurVote(ip,NewChoice) NewChoice=CanId(NewChoice); if (typeof(NewChoice)=='string') { Experiment.PlurResult.set(NewChoice,Experiment.PlurResult.get(NewChoice)+1); Experiment.PlurCount+=1; } Experiment.PlurVotes.set(ip,NewChoice); - console.log(Experiment); + console.log("Plurality vote from "+ip); } @@ -177,6 +177,7 @@ function RangeVote(ip,entries) if (OldVote) AddToRangeResult(OldVote,-1); Experiment.RangeVotes.set(ip,NewVote); AddToRangeResult(NewVote,1); + console.log("Range vote from "+ip); } function SendResults(req,res)