Skip to content

Commit

Permalink
Stop printing each WS.Set call to the console (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-weinberg authored and brian-brazil committed May 25, 2019
1 parent 1ad7459 commit 07a92cc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/com/carolinarollergirls/scoreboard/jetty/WS.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,6 @@ public synchronized void onMessage(String message_data) {
String f = json.getString("flag");
if ("reset".equals(f)) { flag = Flag.RESET; }
if ("change".equals(f)) { flag = Flag.CHANGE; }
//TODO: remove for release
ScoreBoardManager.printMessage("Setting " + key + " to " + v + (flag == null ? "" : (", Flag: " + flag.name())));
Matcher m = pathElementPattern.matcher(key);
if (m.matches() && m.group("name").equals("ScoreBoard") &&
m.group("id") == null && m.group("remainder") != null) {
Expand Down

0 comments on commit 07a92cc

Please sign in to comment.