Skip to content

Commit

Permalink
emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
nvuillam committed Dec 31, 2024
1 parent fa58a0a commit b35382f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/utils/deployTipJson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ export async function analyzeDeployErrorLogsJson(resultJson: any, log: string, i
// Create output log for errors
const detailedErrorLines: string[] = [];
for (const error of errors) {
detailedErrorLines.push(...["", c.red(c.bold(error.messageInitialDisplay)), ""]);
detailedErrorLines.push(...["", "⛔ " + c.red(c.bold(error.messageInitialDisplay)), ""]);
if (error.tips.length > 0 && error.tips.some(err => err.tip || err.tipFromAi)) {
for (const errorTip of error.tips) {
if (errorTip.tip) {
detailedErrorLines.push(...[
c.yellow(c.italic("Error " + c.bold(errorTip.tip.label)) + ":"),
c.yellow(c.italic("✏️ Error " + c.bold(errorTip.tip.label)) + ":"),
c.yellow(errorTip.tip.messageConsole),
c.yellow(`Documentation: ${errorTip.tip.docUrl}`)
])
Expand Down

0 comments on commit b35382f

Please sign in to comment.