Skip to content

Commit 327f46d

Browse files
committed
fix: remove console log
1 parent b461654 commit 327f46d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ type SchemEntry = [string, JSONSchema];
9292
export const sortEntriesByKey = ([key1]: SchemEntry, [key2]: SchemEntry): -1 | 1 => key1 > key2 ? -1 : 1;
9393

9494
export function combineSchemas(s: JSONSchema[]): JSONSchemaObject {
95-
console.log('COMBINING SCHEMAS');
9695
let combinedDefinitions: { [k: string]: JSONSchema } = {};
9796

9897
s.forEach((schema) => {

0 commit comments

Comments
 (0)