remove excessively verbose log message

This commit is contained in:
Nathan Coad
2018-05-02 10:12:21 +10:00
parent 0d6334e5b4
commit 7ceacf9f6d
2 changed files with 1 additions and 61 deletions

View File

@@ -798,7 +798,7 @@ function _booking_waitinglist_update_trigger()
$counter = 1;
foreach ($waiting_list as $person) {
watchdog('booking_debug', "Updating node !nid to have waitlist position of !counter", array('!nid' => $person->nid, '!counter' => $counter));
//watchdog('booking_debug', "Updating node !nid to have waitlist position of !counter", array('!nid' => $person->nid, '!counter' => $counter));
db_update('booking_person')
->fields(array(
'booking_waitlist_pos' => $counter++,