diff --git a/dist/index.js b/dist/index.js index 441592e2..ab1b84c3 100644 --- a/dist/index.js +++ b/dist/index.js @@ -998,7 +998,7 @@ class IssuesProcessor { issueLogger.info(`${isSubStep ? logger_service_1.LoggerService.white('└── ') : ''}The label "${logger_service_1.LoggerService.cyan(label)}" was removed`); } catch (error) { - issueLogger.error(`${isSubStep ? logger_service_1.LoggerService.white('└── ') : ''}Error when removing the label: "${logger_service_1.LoggerService.cyan(error.message)}"`); + issueLogger.error(`${isSubStep ? logger_service_1.LoggerService.white('└── ') : ''}Error when removing the label: ${logger_service_1.LoggerService.cyan(error.message)}`); } }); } diff --git a/src/classes/issues-processor.ts b/src/classes/issues-processor.ts index 71a0d003..8858b718 100644 --- a/src/classes/issues-processor.ts +++ b/src/classes/issues-processor.ts @@ -1039,7 +1039,7 @@ export class IssuesProcessor { issueLogger.error( `${ isSubStep ? LoggerService.white('└── ') : '' - }Error when removing the label: "${LoggerService.cyan(error.message)}"` + }Error when removing the label: ${LoggerService.cyan(error.message)}` ); } }