function action_loop_test_log

Write a message to the log.

1 string reference to 'action_loop_test_log'
LoopTest::testActionLoop in drupal/core/modules/action/lib/Drupal/action/Tests/LoopTest.php
Sets up a loop with 3 - 12 recursions, and sees if it aborts properly.

File

drupal/core/modules/action/tests/action_loop_test/action_loop_test.module, line 48

Code

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