From 3eb05e6df905db6ec8bf8d9d79a178d2f985c959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A4=A4=E0=A5=8B=E0=A4=AB?= =?UTF-8?q?=E0=A5=8D=E0=A4=AB=E0=A5=87=E0=A4=B2=E0=A4=B8=E0=A5=8D=E0=A4=95?= =?UTF-8?q?=E0=A5=8D=E0=A4=B0=E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=9F=E2=84=A2?= Date: Mon, 4 Nov 2024 17:43:11 +0100 Subject: [PATCH] chore(core): Change NodeOperationError default level to `warning` (no-changelog) (#11542) --- packages/workflow/src/errors/node-operation.error.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/workflow/src/errors/node-operation.error.ts b/packages/workflow/src/errors/node-operation.error.ts index 00a7a179cc..ce038ab054 100644 --- a/packages/workflow/src/errors/node-operation.error.ts +++ b/packages/workflow/src/errors/node-operation.error.ts @@ -29,7 +29,7 @@ export class NodeOperationError extends NodeError { } if (options.message) this.message = options.message; - if (options.level) this.level = options.level; + this.level = options.level ?? 'warning'; if (options.functionality) this.functionality = options.functionality; if (options.type) this.type = options.type; this.description = options.description;