From ed6679c37b0e5a077611bf62d8bf3390f67654df Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Sun, 1 Jul 2018 17:20:13 +1000 Subject: [PATCH] remove some unneeded logging --- booking.helper.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/booking.helper.inc b/booking.helper.inc index 8d993c1..362c747 100644 --- a/booking.helper.inc +++ b/booking.helper.inc @@ -748,9 +748,9 @@ function _booking_room_capacity_check($room_id, $room_bedtype, $room_definition_ //check that there is sufficient capacity to allocate another person to this room and bed type if ($mappings->num < $max_beds) { - watchdog('booking','Sufficient capacity is available in location !id, room !room, with bed type !type. !count beds remaining of this type', - array('!id' => $details->booking_room_location_id, '!room' => $details->booking_room_number, - '!type' => _booking_room_bedtype_lookup($room_bedtype), '!count' => $max_beds - $mappings->num)); + //watchdog('booking','Sufficient capacity is available in location !id, room !room, with bed type !type. !count beds remaining of this type', + // array('!id' => $details->booking_room_location_id, '!room' => $details->booking_room_number, + // '!type' => _booking_room_bedtype_lookup($room_bedtype), '!count' => $max_beds - $mappings->num)); return true; }