Skip to content

Commit

Permalink
chore: Notifier console icons
Browse files Browse the repository at this point in the history
  • Loading branch information
cybersokari committed Dec 9, 2024
1 parent 1e54b68 commit 1a5de59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions worker/app/notifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,15 @@ ${Icon.MAGNIFIER} Files processed : ${chalk.yellow(counter.filesProcessed)}
}
if (cloudStorage && !data) {
appLog(`
Storage URL : ${ansiEscapes.link(chalk.blue(dashboardUrl), dashboardUrl)}
Files uploaded : ${chalk.yellow(counter.filesUploaded)}
Files processed : ${chalk.yellow(counter.filesProcessed)}
${Icon.FILE_UPLOAD} Storage URL : ${ansiEscapes.link(chalk.blue(dashboardUrl), dashboardUrl)}
${Icon.FOLDER} Files uploaded : ${chalk.yellow(counter.filesUploaded)}
${Icon.MAGNIFIER} Files processed : ${chalk.yellow(counter.filesProcessed)}
`)
}

if (!cloudStorage && data) {
appLog(`
Test report URL : ${ansiEscapes.link(chalk.blue(data.url), data!.url!)}
${Icon.CHART} Test report URL : ${ansiEscapes.link(chalk.blue(data.url), data!.url!)}
`)
}

Expand Down

0 comments on commit 1a5de59

Please sign in to comment.