Skip to content

Commit 2397f5c

Browse files
committed
fix: remove verbose logging log
1 parent 8ae64f2 commit 2397f5c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/cli/prisma-generator.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,13 @@ import {
2222
export async function generate(options: GeneratorOptions) {
2323
const totalStart = performance.now();
2424
console.log("🚀 TypeGraphQL Generator Started");
25-
// console.log(options, 'options!')
2625

2726
const outputDir = parseEnvValue(options.generator.output!);
2827

2928
// Parse verboseLogging option early to control all logging
3029
const verboseLogging =
3130
parseStringBoolean(options.generator.config.verboseLogging) ?? false;
3231

33-
console.log(verboseLogging, "verboseLogging!");
34-
3532
// Create logging function based on verboseLogging option
3633
const log = (message: string) => {
3734
if (verboseLogging) {

0 commit comments

Comments
 (0)