From: Benjamin Auder <benjamin.auder@somewhere>
Date: Tue, 4 Feb 2020 09:25:12 +0000 (+0100)
Subject: Remove debug trace
X-Git-Url: https://git.auder.net/images/doc/assets/scripts/current/git-logo.png?a=commitdiff_plain;h=763a92a4f845e70e42cb5e442126d4033daceec4;p=vchess.git

Remove debug trace
---

diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue
index d035e009..8fcb77f0 100644
--- a/client/src/components/BaseGame.vue
+++ b/client/src/components/BaseGame.vue
@@ -71,9 +71,6 @@ export default {
     },
     // Received a new move to play:
     "game.moveToPlay": function(newMove) {
-
-console.log(newMove);
-
       if (!!newMove) //if stop + launch new game, get undefined move
         this.play(newMove, "receive");
     },