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; }