Skip to content

Commit 3e7882f

Browse files
committed
Remove unnecessary logging in RecordingService
The logging of recorded locations has been removed to reduce noise in the logs and improve performance. This change ensures that only relevant information is logged during the recording process.
1 parent b272403 commit 3e7882f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Streckenbuch.Server/Services/RecordingService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ public override async Task<Empty> SendRecordedLocations(SendRecordedLocationsReq
7272

7373
foreach (RecordPosition requestPosition in request.Positions)
7474
{
75-
_logger.LogInformation($"SendRecordedLocations: {requestPosition.Location.Latitude} {requestPosition.Location.Longitude} {requestPosition.DateTime}");
7675
await _tripRecordingRepository.AddAsync(new TripRecording()
7776
{
7877
WorkTripId = request.WorkTripId, Location = requestPosition.Location, Time = TimeOnly.FromDateTime(new DateTime(requestPosition.DateTime))

0 commit comments

Comments
 (0)