remove some unneeded logging
This commit is contained in:
@@ -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
|
//check that there is sufficient capacity to allocate another person to this room and bed type
|
||||||
if ($mappings->num < $max_beds)
|
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',
|
//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,
|
// array('!id' => $details->booking_room_location_id, '!room' => $details->booking_room_number,
|
||||||
'!type' => _booking_room_bedtype_lookup($room_bedtype), '!count' => $max_beds - $mappings->num));
|
// '!type' => _booking_room_bedtype_lookup($room_bedtype), '!count' => $max_beds - $mappings->num));
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user