This commit is contained in:
Philipinho
2025-08-01 02:26:14 -07:00
parent 39550fe906
commit ca83712364
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ export class TrashCleanupService {
@Interval('trash-cleanup', 24 * 60 * 60 * 1000) // every 24 hours
async cleanupOldTrash() {
try {
this.logger.log('Starting trash cleanup job');
this.logger.debug('Starting trash cleanup job');
const retentionDate = new Date();
retentionDate.setDate(retentionDate.getDate() - this.RETENTION_DAYS);