function notifications_log in Notifications 6.3
Same name and namespace in other branches
- 5 notifications.cron.inc \notifications_log()
- 6.4 notifications.module \notifications_log()
- 6 notifications.module \notifications_log()
- 6.2 notifications.module \notifications_log()
Short hand for info logs
8 calls to notifications_log()
- NotificationsTestCase::dumpLogs in tests/
notifications_test_case.inc - notifications_digest_build_long in notifications_digest/
notifications_digest.module - Digest multiple events in a single message, long format.
- notifications_digest_build_short in notifications_digest/
notifications_digest.module - Digest multiple events in a single message, short format.
- notifications_process_build_simple in ./
notifications.cron.inc - Creates a single message for a single event
- notifications_process_compose in ./
notifications.cron.inc - Message composition.
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 1882 - Notifications module
Code
function notifications_log($message = NULL, $variables = NULL) {
return messaging_log($message, $variables);
}