Skip to content

Commit

Permalink
remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueHorn07 committed Aug 9, 2023
1 parent 4ffece3 commit fa3fade
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/popo/reservation/place/reserve.place.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export class ReservePlaceService {
}

const targetPlace = await this.placeService.findOneByUuidOrFail(place_id);
console.log('targetPlace', targetPlace);

// Reservation Overlap Check
const isReservationOverlap = await this.isReservationOverlap(
Expand Down Expand Up @@ -107,7 +106,6 @@ export class ReservePlaceService {
status: In([ReservationStatus.accept, ReservationStatus.in_process]),
},
});
console.log('reservationsOfDay', reservationsOfDay);

let totalReservationMinutes = 0;
for (const reservation of reservationsOfDay) {
Expand All @@ -116,7 +114,6 @@ export class ReservePlaceService {
reservation.end_time,
);
totalReservationMinutes += reservationDuration;
console.log('totalReservationMinutes', totalReservationMinutes);
}

if (
Expand Down

0 comments on commit fa3fade

Please sign in to comment.