Explorar el Código

remove console.log test message

Martin Le Baut hace 5 años
padre
commit
6b48a87fb9
Se han modificado 2 ficheros con 0 adiciones y 2 borrados
  1. 0 1
      server/db/mariadb-connector.js
  2. 0 1
      server/server.js

+ 0 - 1
server/db/mariadb-connector.js

@@ -88,7 +88,6 @@ export default class MariadbConnector {
   }
 
   async addNewGame(game) {
-    console.log('ICIMAMENE');
     let conn;
     try {
       conn = await this.pool.getConnection();

+ 0 - 1
server/server.js

@@ -120,7 +120,6 @@ function Server() {
     });
 
     socket.on('create-game', async (game, callback) => {
-      console.log('ICINORMALEMENT');
       let response = {};
       try {
         let games = await addGameDb(game);