コンソールから JavaScript エラー メッセージ フィールドを非表示にする
If you log a NodeJs error in the console it will also show all the fields attached, this is a problem for very long fields as they will make a mess in your terminal of CI.For example having this custom error class:export class ShellError extends Error { stdout: string stderr: string output: string constructor(message: string,…