From b35382ff97432c665e2e755465821eabd8878d09 Mon Sep 17 00:00:00 2001 From: Nicolas Vuillamy Date: Tue, 31 Dec 2024 13:06:39 +0100 Subject: [PATCH] emojis --- src/common/utils/deployTipJson.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/utils/deployTipJson.ts b/src/common/utils/deployTipJson.ts index f15ce6ed8..ecc5d03ba 100644 --- a/src/common/utils/deployTipJson.ts +++ b/src/common/utils/deployTipJson.ts @@ -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}`) ])