You are here

function messaging_log_get in Messaging 6.2

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

Get logs without formatting

1 call to messaging_log_get()
messaging_debug_footer in messaging_debug/messaging_debug.module
Implementation of hook_footer()

File

./messaging.module, line 1282

Code

function messaging_log_get() {
  if ($logs = _messaging_log('return')) {
    _messaging_log('reset');
    return $logs;
  }
}