You are here

function notifications_debug in Notifications 6.4

Same name and namespace in other branches
  1. 6.2 notifications.module \notifications_debug()
  2. 6.3 notifications.module \notifications_debug()

Short hand for debug logs

4 calls to notifications_debug()
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_digest_line in notifications_digest/notifications_digest.module
Digest each line, with some caching for performance
Notifications_Queue::message_send in includes/notifications_queue.class.inc
Message sending, pass the message to Messaging back end

File

./notifications.module, line 1971
Notifications module

Code

function notifications_debug($message = NULL, $variables = NULL) {
  return messaging_debug($message, $variables);
}