summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-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 = {};