Skip to content

Commit 2ade7fa

Browse files
Remove too verbose logging
1 parent 38ef9ca commit 2ade7fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/abstractplay.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ async function metaGamesDetails() {
825825
details[key].tags = [];
826826
}
827827
}
828-
console.log(`Details:\n${JSON.stringify(details, undefined, 2)}`);
828+
// console.log(`Details:\n${JSON.stringify(details, undefined, 2)}`);
829829
// Change every "ratings" to the number of elements in the Set.
830830
const details2 = Object.keys(details)
831831
.filter(key => key !== "pk" && key !== "sk" && !key.endsWith("_ratings"))
@@ -836,7 +836,7 @@ async function metaGamesDetails() {
836836
"ratings": (details as any)[k + "_ratings"]?.size ?? 0
837837
}
838838
}), {})
839-
console.log(`Details2:\n${JSON.stringify(details2, undefined, 2)}`);
839+
// console.log(`Details2:\n${JSON.stringify(details2, undefined, 2)}`);
840840
return {
841841
statusCode: 200,
842842
body: JSON.stringify(details2),

0 commit comments

Comments
 (0)