mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
chore(core): Change NodeOperationError default level to warning (no-changelog) (#11542)
This commit is contained in:
committed by
GitHub
parent
6b9353c80f
commit
3eb05e6df9
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user