function actions_loop_test_log

Write a message to the log.

1 string reference to 'actions_loop_test_log'

File

drupal/modules/simpletest/tests/actions_loop_test.module, line 63

Code

function actions_loop_test_log() {
  $count =& drupal_static(__FUNCTION__, 0);
  $count++;
  watchdog_skip_semaphore('actions_loop_test', "Test log #{$count}");
}