Remove console.log from teams.js

main
sudoer777 2021-11-24 20:46:16 -07:00
parent 0a6c56e103
commit 9c7241e7e6
1 changed files with 0 additions and 1 deletions

View File

@ -69,7 +69,6 @@ async function getFromID(id) {
FROM scores.teams
WHERE team_id = $1;`;
const row = (await database.executeQuery(query, [id]))[0];
console.log(row);
return new Team(id, row[0], row[1]);
}