Skip to content

Commit

Permalink
feat: disable debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejpetras committed Oct 6, 2023
1 parent 13df0e0 commit c23bfbc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/nx-docker-plugin/src/executors/release/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default async function runExecutor(options: ReleaseExecutorSchema, contex

const _prefix = `[${context.projectName}/${context.target.command}]`;
console.info('%s executing docker release ...', _prefix);
console.debug('%s options %s', _prefix, JSON.stringify(options, null, 2));
// console.debug('%s options %s', _prefix, JSON.stringify(options, null, 2));

return {
success: true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/nx-helm-plugin/src/executors/build/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default async function runExecutor(options: BuildExecutorSchema, context:
const _prefix = `[${context.projectName}/${context.target.command}]`;

console.info('%s executing helm package for version %s ...', _prefix, options.version);
console.debug('%s options %s', _prefix, JSON.stringify(options, null, 2));
// console.debug('%s options %s', _prefix, JSON.stringify(options, null, 2));

const projSourceDir = context.projectsConfigurations.projects[context.projectName].sourceRoot;

Expand Down
2 changes: 1 addition & 1 deletion plugins/nx-helm-plugin/src/executors/release/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default async function runExecutor(options: ReleaseExecutorSchema, contex
const _prefix = `[${context.projectName}/${context.target.command}]`;

console.info('%s executing helm release ...', _prefix);
console.debug('%s options %s', _prefix, JSON.stringify(options, null, 2));
// console.debug('%s options %s', _prefix, JSON.stringify(options, null, 2));

return {
success: true,
Expand Down

0 comments on commit c23bfbc

Please sign in to comment.