You are here

function messaging_log_get in Messaging 7

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

Get logs without formatting

1 call to messaging_log_get()
MessagingTestCase::dumpLogs in tests/messaging_test_case.inc

File

messaging_devel/messaging_devel.module, line 335
Simple messaging using html page. Messaging method plug-in

Code

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