You are here

function messaging_log_get in Messaging 6.4

Same name and namespace in other branches
  1. 6.2 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()
MessagingTestCase::dumpLogs in tests/messaging_test_case.inc

File

./messaging.module, line 967

Code

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