diff --git a/services/integration/checkBookingChange.js b/services/integration/checkBookingChange.js index 9a46a39..ea53ae2 100644 --- a/services/integration/checkBookingChange.js +++ b/services/integration/checkBookingChange.js @@ -49,10 +49,13 @@ const checkBookingChanges = () => { Promise.all(asyncActions) .then((asyncActionResults) => { const changes = asyncActionResults[1]; + // console.log(changes); bulkWriteChanges(changes) .then(() => { getIncidentsFromChanges(changes) .then(({incidents, reservationsForAdditionalCheck}) => { + // console.log('=====INCIDENTS====='); + // console.log(incidents); bulkWriteBookingChangeIncidents(incidents) .then(() => { getReservationsIncidentsForRemoval(reservationsForAdditionalCheck)