You are here

protected function ExifCustomHelper::verbose in EXIF Custom 7

Logs a verbose message in a text file.

The link to the verbose message will be placed in the test results as a passing assertion with the text '[verbose message]'.

Parameters

$message: The verbose message to be stored.

Overrides DrupalTestCase::verbose

See also

simpletest_verbose()

1 call to ExifCustomHelper::verbose()
ExifCustomTestCase::testProcess in tests/ExifCustomTestCase.test
Run through the module's normal functionality.

File

tests/ExifCustomHelper.test, line 28
Base test logic for the EXIF Custom module.

Class

ExifCustomHelper
Base test logic for the EXIF Custom module.

Code

protected function verbose($message, $title = NULL) {

  // Handle arrays, objects, etc.
  if (!is_string($message)) {
    $message = "<pre>\n" . print_r($message, TRUE) . "\n</pre>\n";
  }

  // Optional title to go before the output.
  if (!empty($title)) {
    $title = '<h2>' . check_plain($title) . "</h2>\n";
  }
  parent::verbose($title . $message);
}