Skip to content

Commit

Permalink
chore: no log for skipping
Browse files Browse the repository at this point in the history
  • Loading branch information
ychung-mot committed Jun 19, 2024
1 parent 375012d commit 7434303
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions server/StrDss.Service/RentalListingReportService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -352,11 +352,7 @@ private async Task ProcessRentalReportUploadAsync(DssUploadDelivery upload)

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

if (!exists)
{
_logger.LogInformation($"Skipping listing - ({row.OrgCd} - {row.ListingId})");
continue;
}
if (!exists) continue;

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

Expand Down

0 comments on commit 7434303

Please sign in to comment.