You are here

function notifications_log in Notifications 6.4

Same name and namespace in other branches
  1. 5 notifications.cron.inc \notifications_log()
  2. 6 notifications.module \notifications_log()
  3. 6.2 notifications.module \notifications_log()
  4. 6.3 notifications.module \notifications_log()

Short hand for info logs

6 calls to notifications_log()
Notifications_Queue::process_compose in includes/notifications_queue.class.inc
Message composition.
Notifications_Queue::process_group in includes/notifications_queue.class.inc
Process queued rows, send messages, etc, etc...
Notifications_Queue::process_queue in includes/notifications_queue.class.inc
Process subscriptions queue
Notifications_Queue::process_rows in includes/notifications_queue.class.inc
Process rows given query conditions
Notifications_Queue::process_run in includes/notifications_queue.class.inc
Function to be called on cron by the main notifications_cron

... See full list

3 string references to 'notifications_log'
NotificationsBasicTests::testNotificationsQueryBuilder in tests/notifications_api.test
Test query builder
Notifications_Queue::process_clean in includes/notifications_queue.class.inc
Clean up queue and events before starting process
Notifications_Queue::queue_done in includes/notifications_queue.class.inc
Mark queue rows as done

File

./notifications.module, line 1964
Notifications module

Code

function notifications_log($message = NULL, $variables = NULL) {
  return messaging_log($message, $variables);
}