diff --git a/client/src/images/screenshots/dedicated_mod_inprogress_mobile.png b/client/src/images/screenshots/dedicated_mod_inprogress_mobile.png index 87fbc1e..f3a865b 100644 Binary files a/client/src/images/screenshots/dedicated_mod_inprogress_mobile.png and b/client/src/images/screenshots/dedicated_mod_inprogress_mobile.png differ diff --git a/server/modules/GameManager.js b/server/modules/GameManager.js index a4eeed7..5c33f81 100644 --- a/server/modules/GameManager.js +++ b/server/modules/GameManager.js @@ -329,10 +329,10 @@ class GameManager { const matchingPerson = findPersonByField(game, 'cookie', personCookie); if (matchingPerson) { if (matchingPerson.socketId === clientSocket.id) { - logger.trace('matching person found with an established connection to the room: ' + matchingPerson.name); + logger.debug('matching person found with an established connection to the room: ' + matchingPerson.name); ackFn(GameStateCurator.getGameStateFromPerspectiveOfPerson(game, matchingPerson)); } else { - logger.trace('matching person found with a new connection to the room: ' + matchingPerson.name); + logger.debug('matching person found with a new connection to the room: ' + matchingPerson.name); clientSocket.join(accessCode); matchingPerson.socketId = clientSocket.id; ackFn(GameStateCurator.getGameStateFromPerspectiveOfPerson(game, matchingPerson));