diff --git a/myteamwallet_backend/src/cashbox-export/cashbox-export.module.ts b/myteamwallet_backend/src/cashbox-export/cashbox-export.module.ts index 36d2d7b..5b79efe 100644 --- a/myteamwallet_backend/src/cashbox-export/cashbox-export.module.ts +++ b/myteamwallet_backend/src/cashbox-export/cashbox-export.module.ts @@ -1,5 +1,6 @@ import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; +import { LoggingModule } from 'src/database/logging/logging.module'; import { MailModule } from 'src/mail/mail.module'; import { Team } from 'src/teams/entities/team.entity'; import { TeamsModule } from 'src/teams/teams.module'; @@ -16,6 +17,7 @@ import { CashboxExportScheduler } from './cashbox-export.scheduler'; TypeOrmModule.forFeature([Team, CashboxExportSubscription]), TeamsModule, MailModule, + LoggingModule, ], }) export class CashboxExportModule {}