Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spaces in issues-processor.ts #748

Merged
merged 2 commits into from
Jun 20, 2022
Merged
Changes from 1 commit
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
14 changes: 7 additions & 7 deletions src/classes/issues-processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ export class IssuesProcessor {
} else {
this._logger.info(
`${LoggerService.yellow(
'Processing the batch of issues'
'Processing the batch of issues '
)} ${LoggerService.cyan(`#${page}`)} ${LoggerService.yellow(
'containing'
' containing '
)} ${LoggerService.cyan(issues.length)} ${LoggerService.yellow(
`issue${issues.length > 1 ? 's' : ''}...`
` issue${issues.length > 1 ? 's' : ''}...`
)}`
);
}
Expand Down Expand Up @@ -151,11 +151,11 @@ export class IssuesProcessor {
);
this._logger.warning(
`${LoggerService.yellowBright(
'If you think that not enough issues were processed you could try to increase the quantity related to the'
'If you think that not enough issues were processed you could try to increase the quantity related to the '
)} ${this._logger.createOptionLink(
Option.OperationsPerRun
)} ${LoggerService.yellowBright(
'option which is currently set to'
' option which is currently set to '
)} ${LoggerService.cyan(this.options.operationsPerRun)}`
);
this.statistics
Expand All @@ -166,9 +166,9 @@ export class IssuesProcessor {
}

this._logger.info(
`${LoggerService.green('Batch')} ${LoggerService.cyan(
`${LoggerService.green('Batch ')} ${LoggerService.cyan(
`#${page}`
)} ${LoggerService.green('processed.')}`
)} ${LoggerService.green(' processed.')}`
);

// Do the next batch
Expand Down