Skip to content

Commit

Permalink
fix(app-builder): fix not being able to disable debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Oct 24, 2024
1 parent c39ec59 commit deb5fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/app-builder/src/utils/command/createDebugger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const createDebugger = (name: string, args: CommandArgs): PdkDebugger =>

const timeStart = Date.now();

debug.enabled = args.quiet !== false;
debug.enabled = !args.quiet;

// eslint-disable-next-line no-console
debug.log = console.log.bind(console);
Expand Down

0 comments on commit deb5fde

Please sign in to comment.