Skip to content

Commit b453fd5

Browse files
benmineractions-user
authored andcommitted
fix: remove verbose logging log [v0.28.2]
1 parent 8ae64f2 commit b453fd5

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scope3/typegraphql-prisma",
3-
"version": "0.28.1",
3+
"version": "0.28.2",
44
"scripts": {
55
"prepare": "husky install",
66
"prebuild": "rm -rf lib",

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)