mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
Fix logger import paths
This commit is contained in:
parent
bc409c4ce9
commit
879362a5b9
|
@ -7,7 +7,7 @@ import { createGzip } from 'node:zlib';
|
|||
import tar from 'tar-stream';
|
||||
import { Service } from 'typedi';
|
||||
|
||||
import { Logger } from '@/logger';
|
||||
import { Logger } from '@/logging/logger.service';
|
||||
|
||||
import { BATCH_SIZE, EXCLUDE_LIST, MANIFEST_FILENAME, ZIP_BASE_FILE_NAME } from './constants';
|
||||
import type { DatabaseExportConfig, Manifest, Row } from './types';
|
||||
|
|
|
@ -9,7 +9,7 @@ import { Extract } from 'unzip-stream';
|
|||
|
||||
import { NotObjectLiteralError } from '@/errors/not-object-literal.error';
|
||||
import { RowCountMismatchError } from '@/errors/row-count-mismatch.error';
|
||||
import { Logger } from '@/logger';
|
||||
import { Logger } from '@/logging/logger.service';
|
||||
import { isObjectLiteral } from '@/utils';
|
||||
|
||||
import { MANIFEST_FILENAME } from './constants';
|
||||
|
|
Loading…
Reference in a new issue