mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(core): Fix level in warn method of error reporter (no-changelog) (#9502)
This commit is contained in:
@@ -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' });
|
||||||
|
|||||||
Reference in New Issue
Block a user