You are here

function messaging_debug in Messaging 6.2

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

Short hand for debug logs

4 calls to messaging_debug()
messaging_message_prepare in ./messaging.module
Message default callback: preprocessing
messaging_message_render in ./messaging.module
Renders full message with header and body
messaging_message_send in ./messaging.module
Send message to array of destinations. The message is rendered just once.
messaging_message_send_user in ./messaging.module
Send message to user represented by account
7 string references to 'messaging_debug'
Messaging_API_Tests::setUp in tests/messaging_api.test
Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix.…
messaging_debug_form_alter in messaging_debug/messaging_debug.module
Implementation of hook_form_alter()
messaging_debug_init in messaging_debug/messaging_debug.module
Implementation of hook_init
messaging_debug_messaging_methods_alter in messaging_debug/messaging_debug.module
Implementation of hook_messaging_methods_alter()
Messaging_Methods_Tests::setUp in tests/messaging_methods.test
Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix.…

... See full list

File

./messaging.module, line 1299

Code

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