Skip to content

Commit 7434303

Browse files
committed
chore: no log for skipping
1 parent 375012d commit 7434303

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

server/StrDss.Service/RentalListingReportService.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -352,11 +352,7 @@ private async Task ProcessRentalReportUploadAsync(DssUploadDelivery upload)
352352

353353
var exists = linesToProcess.Any(x => x.OrgCd == row.OrgCd && x.ListingId == row.ListingId);
354354

355-
if (!exists)
356-
{
357-
_logger.LogInformation($"Skipping listing - ({row.OrgCd} - {row.ListingId})");
358-
continue;
359-
}
355+
if (!exists) continue;
360356

361357
var uploadLine = await _uploadRepo.GetUploadLineAsync(upload.UploadDeliveryId, row.OrgCd, row.ListingId);
362358

0 commit comments

Comments
 (0)