Remove console.log used for debugging

main
sudoer777 2021-11-21 23:23:06 -07:00
parent dca9079648
commit 41d9140863
1 changed files with 0 additions and 1 deletions

View File

@ -52,7 +52,6 @@ async function retrieveByTeamDivisionAndSeason(teamID, divisionID, seasonID) {
gamesList.push(new Game(row[0], row[3].toISOString().slice(0,10), teamID, opponentID, teamScore, opponentScore));
});
console.log(gamesList);
return gamesList;
}