summary refs log tree commit diff
path: root/scripts/schema.js
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-04-14 22:59:40 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-04-14 22:59:40 +1000
commita263ebb1e50fb0b90b0ab82ced1a30511e815b42 (patch)
treece60685efc91659d042bcdb40a404b94c1a1330f /scripts/schema.js
parentmove guild/user prop initialisations into create/register methods (diff)
downloadserver-a263ebb1e50fb0b90b0ab82ced1a30511e815b42.tar.xz
generated files
Diffstat (limited to 'scripts/schema.js')
-rw-r--r--scripts/schema.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/schema.js b/scripts/schema.js
index 16e7d017..b4393558 100644
--- a/scripts/schema.js
+++ b/scripts/schema.js
@@ -78,7 +78,6 @@ function main() {
 	if (!generator || !program) return;
 
 	let schemas = generator.getUserSymbols().filter((x) => {
-		console.log(x);
 		return (
 			(x.endsWith("Schema") ||
 				x.endsWith("Response") ||
@@ -86,7 +85,6 @@ function main() {
 			!Excluded.includes(x)
 		);
 	});
-	console.log(schemas);
 
 	var definitions = {};