You are here

function notifications_log in Notifications 6

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

Short hand for info logs

7 calls to notifications_log()
notifications_admin_queue_operations_submit in ./notifications.admin.inc
Operations form submit, translate op into callback
notifications_process_digest_long in ./notifications.cron.inc
Digest multiple events in a single message, long format.
notifications_process_digest_short in ./notifications.cron.inc
Digest multiple events in a single message, short format.
notifications_process_queue in ./notifications.cron.inc
Process subscriptions queue
notifications_process_rows in ./notifications.cron.inc
Process rows given query conditions

... See full list

4 string references to 'notifications_log'
NotificationsBasicTests::testNotificationsQueryBuilder in tests/notifications_api.test
Test query builder
notifications_process_prepare in ./notifications.cron.inc
Prepare subscriptions queue
notifications_queue_done in ./notifications.cron.inc
Mark queue rows as done
notifications_settings_form in ./notifications.admin.inc
Admin settings

File

./notifications.module, line 1746
Notifications module

Code

function notifications_log($message = NULL, $variables = NULL) {
  return _notifications_log('info', $message, $variables);
  dsm($message);
}