diff --git a/dist/game-server.js b/dist/game-server.js index 4eb9e11..de4fc28 100644 --- a/dist/game-server.js +++ b/dist/game-server.js @@ -43,7 +43,7 @@ class GameServer { console.log('gs.up', this.config.host, this.config.port); let info = await this.gamedig(); if (DBG) - console.log('gs.gamedig', info); + console.log('gs.gamedig', Object.assign({}, info, { players: undefined })); if (!info && STEAM_WEB_API_KEY && this.config.appId) { info = await this.steam(); if (DBG) diff --git a/src/game-server.ts b/src/game-server.ts index 8d1cda5..50af3e7 100644 --- a/src/game-server.ts +++ b/src/game-server.ts @@ -67,7 +67,7 @@ export class GameServer { if (DBG) console.log('gs.up', this.config.host, this.config.port); let info = await this.gamedig(); - if (DBG) console.log('gs.gamedig', info); + if (DBG) console.log('gs.gamedig', Object.assign({}, info, { players: undefined })); if (!info && STEAM_WEB_API_KEY && this.config.appId) { info = await this.steam(); if (DBG) console.log('gs.steam', info);