You are here

function messaging_debug in Messaging 6.4

Same name and namespace in other branches
  1. 6.2 messaging.module \messaging_debug()
  2. 6.3 messaging.module \messaging_debug()
  3. 7 messaging.module \messaging_debug()

Short hand for debug logs

8 calls to messaging_debug()
Messaging_Message::prepare in includes/messaging_message.class.inc
Prepare for sending through given method
Messaging_Message::process in includes/messaging_message.class.inc
Check whether the message is to be sent / queued
messaging_message_send in ./messaging.module
Send message to array of destinations. The message is rendered just once.
messaging_message_send_destination in ./messaging.module
Send message to destination object
messaging_message_send_user in ./messaging.module
Send message to user represented by account

... See full list

1 string reference to 'messaging_debug'
messaging_uninstall in ./messaging.install
Implementation of hook_uninstall().

File

./messaging.module, line 984

Code

function messaging_debug($txt = NULL, $variables = NULL) {
  if (function_exists('messaging_debug_log')) {
    return messaging_debug_log($txt, $variables);
  }
}