We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae64f2 commit 2397f5cCopy full SHA for 2397f5c
src/cli/prisma-generator.ts
@@ -22,16 +22,13 @@ import {
22
export async function generate(options: GeneratorOptions) {
23
const totalStart = performance.now();
24
console.log("🚀 TypeGraphQL Generator Started");
25
- // console.log(options, 'options!')
26
27
const outputDir = parseEnvValue(options.generator.output!);
28
29
// Parse verboseLogging option early to control all logging
30
const verboseLogging =
31
parseStringBoolean(options.generator.config.verboseLogging) ?? false;
32
33
- console.log(verboseLogging, "verboseLogging!");
34
-
35
// Create logging function based on verboseLogging option
36
const log = (message: string) => {
37
if (verboseLogging) {
0 commit comments