Skip to content

Commit

Permalink
pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Apr 12, 2024
1 parent cc65960 commit 31fa4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if (argv._ && argv._[0]) {
}

// Logging function based on logLevel
const currentLogLevel = argv.logLevel ? logLevels.indexOf(argv.logLevel.toLowerCase()) : 2; // Default to 'info'
const currentLogLevel = argv.logLevel ? logLevels.indexOf(argv.logLevel.toLowerCase()) : 0; // Default to 'error'
const log = getLogFn(currentLogLevel);
try {
const lernaJsonPath: string = findLernaDir(dir);
Expand Down

0 comments on commit 31fa4bf

Please sign in to comment.