fix(HTTP Request Node): Show detailed error message in the UI again (#5959)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-04-12 14:58:05 +02:00
committed by GitHub
parent 60d28fc761
commit e79679c023
7 changed files with 141 additions and 38 deletions

View File

@@ -0,0 +1,14 @@
import { ILogger, LoggerProxy } from 'n8n-workflow';
const fakeLogger = {
log: () => {},
debug: () => {},
verbose: () => {},
info: () => {},
warn: () => {},
error: () => {},
} as ILogger;
export const initLogger = () => {
LoggerProxy.init(fakeLogger);
};