chore: improve error logging in pipeline

This commit is contained in:
Matthias Nannt
2024-07-15 12:21:06 +02:00
parent 1f9b31a6cd
commit be7090b29c
@@ -282,6 +282,7 @@ const getValue = (colType: string, value: string | string[] | number | Record<st
return typeof value === "string" ? value : (value as string[]).join(", ");
}
} catch (error) {
console.error(error);
throw new Error("Payload build failed!");
}
};