Remove console.log from teams.js

This commit is contained in:
sudoer777 2021-11-24 20:46:16 -07:00
parent 0a6c56e103
commit 9c7241e7e6

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]);
}