Skip to content

Commit

Permalink
chore: remove excessive logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ychung-mot committed Sep 18, 2024
1 parent 845b9d1 commit d071b9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/StrDss.Service/RentalListingService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public async Task CreateRentalListingExportFiles()
var lg = string.Empty;

var stopWatchForAll = Stopwatch.StartNew();
var stopWatch = Stopwatch.StartNew();
//var stopWatch = Stopwatch.StartNew();

var currentMonth = DateUtils.ConvertUtcToPacificTime(new DateTime(currentTime.Year, currentTime.Month, 1)).AddDays(-1).ToString("yyyy-MM");

Expand Down Expand Up @@ -176,7 +176,7 @@ public async Task CreateRentalListingExportFiles()
prExport.Add(line);
}

LogProgress(count, totalCount, stopWatch);
//LogProgress(count, totalCount, stopWatch);
}

await CreateFinalExports(allExport, prExport, lgExport, lg, lgId);
Expand Down

0 comments on commit d071b9c

Please sign in to comment.