Remove console.log from teams.js
parent
0a6c56e103
commit
9c7241e7e6
|
@ -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]);
|
||||
}
|
||||
|
||||
|
|
Reference in New Issue