Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,6 @@ export default class CLIProgressManager {
return;
}

if (configHandler.get('log')?.showConsoleLogs) {
return;
}

// Apply strategy-based corrections before printing
CLIProgressManager.applyStrategyCorrections();

Expand Down Expand Up @@ -541,7 +537,11 @@ export default class CLIProgressManager {
: getChalk().cyan(`${this.successCount}✓ ${this.failureCount}✗`);

const labelColor =
totalProcessed >= this.total ? (this.failureCount === 0 ? getChalk().green : getChalk().yellow) : getChalk().cyan;
totalProcessed >= this.total
? this.failureCount === 0
? getChalk().green
: getChalk().yellow
: getChalk().cyan;

const formattedName = this.formatModuleName(this.moduleName);
const displayName = formattedName.length > 20 ? formattedName.substring(0, 17) + '...' : formattedName;
Expand Down Expand Up @@ -617,10 +617,10 @@ export default class CLIProgressManager {
process.status === 'completed'
? '✓'
: process.status === 'failed'
? '✗'
: process.status === 'active'
? '●'
: '○';
? '✗'
: process.status === 'active'
? '●'
: '○';

this.log(
` ${status} ${processName}: ${process.successCount}✓ ${process.failureCount}✗ (${process.current}/${process.total})`,
Expand Down
Loading