refactor(core): Move dependencies of Logger to standalone packages (#15338)

This commit is contained in:
Iván Ovejero
2025-05-13 16:55:42 +02:00
committed by GitHub
parent 3840cbabbf
commit 3176f6fc89
27 changed files with 58 additions and 59 deletions

View File

@@ -1,3 +1,4 @@
import { inTest, inDevelopment } from '@n8n/backend-common';
import { GlobalConfig } from '@n8n/config';
import { OnShutdown } from '@n8n/decorators';
import { Container, Service } from '@n8n/di';
@@ -10,7 +11,7 @@ import isbot from 'isbot';
import { Logger } from 'n8n-core';
import config from '@/config';
import { N8N_VERSION, TEMPLATES_DIR, inDevelopment, inTest } from '@/constants';
import { N8N_VERSION, TEMPLATES_DIR } from '@/constants';
import { DbConnection } from '@/databases/db-connection';
import { ServiceUnavailableError } from '@/errors/response-errors/service-unavailable.error';
import { ExternalHooks } from '@/external-hooks';