function messaging_debug in Messaging 6.3
Same name and namespace in other branches
- 6.4 messaging.module \messaging_debug()
- 6.2 messaging.module \messaging_debug()
- 7 messaging.module \messaging_debug()
Short hand for debug logs
Call messaging_debug(TRUE) to enable logging
4 calls to messaging_debug()
- messaging_message_send in ./
messaging.module - Send message to array of destinations using the same method. The message is rendered just once.
- messaging_message_send_user in ./
messaging.module - Send message to user represented by account
- Messaging_Template::debug in messaging_template/
messaging_template.inc - Debug, adding instance information
- Messaging_Template_Engine::_debug in messaging_template/
messaging_template.inc - Debug, static version
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.…
File
- ./
messaging.module, line 1028
Code
function messaging_debug($txt = NULL, $variables = NULL) {
if (function_exists('messaging_debug_log')) {
return messaging_debug_log($txt, $variables);
}
}