mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(core): Stop reporting ExpressionError to Sentry (no-changelog) (#11943)
This commit is contained in:
parent
461b39c5df
commit
f1ecd9b68c
|
@ -30,7 +30,7 @@ export interface ExpressionErrorOptions {
|
||||||
*/
|
*/
|
||||||
export class ExpressionError extends ExecutionBaseError {
|
export class ExpressionError extends ExecutionBaseError {
|
||||||
constructor(message: string, options?: ExpressionErrorOptions) {
|
constructor(message: string, options?: ExpressionErrorOptions) {
|
||||||
super(message, { cause: options?.cause });
|
super(message, { cause: options?.cause, level: 'warning' });
|
||||||
|
|
||||||
if (options?.description !== undefined) {
|
if (options?.description !== undefined) {
|
||||||
this.description = options.description;
|
this.description = options.description;
|
||||||
|
|
Loading…
Reference in a new issue