chore: remove console.log

This commit is contained in:
Ahmed Bouhuolia
2024-04-01 04:40:40 +02:00
parent 45b5fb4088
commit b9651f30d5

View File

@@ -21,7 +21,6 @@ export class ItemsImportable extends Importable {
createDTO: IItemCreateDTO,
trx?: Knex.Transaction<any, any[]>
): Promise<void> {
console.log(createDTO, tenantId, 'XX');
await this.createItemService.createItem(tenantId, createDTO, trx);
}