Fix logger import paths

This commit is contained in:
Iván Ovejero 2024-10-11 11:36:27 +02:00
parent bc409c4ce9
commit 879362a5b9
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -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';

View file

@ -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';