Skip to content

Commit 47f5620

Browse files
committed
fix: remove console logging
1 parent 54cbeab commit 47f5620

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/build/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,6 @@ export function generateClientType(server: Server) {
128128
f.createStringLiteral(method),
129129
undefined,
130130
f.createTypeLiteralNode(Object.entries(route).map(([path, options]) => {
131-
if (path === "/audits/{audit_uid}/users") {
132-
console.log(options);
133-
}
134131
return f.createPropertySignature(
135132
[],
136133
f.createStringLiteral(path),
@@ -149,7 +146,6 @@ export function generateClientType(server: Server) {
149146
const sourceFile = factory.createSourceFile(statements, factory.createToken(SyntaxKind.EndOfFileToken), NodeFlags.None);
150147
const printer = createPrinter();
151148
const clientType = printer.printNode(EmitHint.SourceFile, sourceFile, sourceFile);
152-
console.error(clientType);
153149
return clientType;
154150
}
155151

0 commit comments

Comments
 (0)