mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
fix(core): Fix level
in warn
method of error reporter (no-changelog) (#9502)
This commit is contained in:
parent
b585777c79
commit
24e8ac00c6
|
@ -39,4 +39,4 @@ export const info = (msg: string, options?: ReportingOptions) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const warn = (warning: Error | string, options?: ReportingOptions) =>
|
export const warn = (warning: Error | string, options?: ReportingOptions) =>
|
||||||
error(warning, { level: 'warning', ...options });
|
error(warning, { ...options, level: 'warning' });
|
||||||
|
|
Loading…
Reference in a new issue