From 654b4d706c97d9a54ae3fdef9b80410d6d81a45f Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Thu, 3 Sep 2020 23:28:24 +0200 Subject: [PATCH] remove debugging output --- db/booking.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/db/booking.ts b/db/booking.ts index 688e18f..7748156 100644 --- a/db/booking.ts +++ b/db/booking.ts @@ -69,7 +69,6 @@ BookingSchema.virtual('days').get(function () { }) BookingSchema.static('findBookedDays', async function (): Promise { - console.log('in findBookedDays this is', this) const bookings = await this.find( { status: { $in: [BOOKING_STATUS.REQUESTED, BOOKING_STATUS.CONFIRMED] },