You are here

function notifications_log in Notifications 6.2

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

Short hand for info logs

7 calls to notifications_log()
NotificationsTestCase::dumpLogs in tests/notifications_test_case.inc
notifications_process_compose in ./notifications.cron.inc
Message composition.
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

... 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 1894
Notifications module

Code

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