You are here

public function Framework::debug in Realistic Dummy Content 3.x

Same name and namespace in other branches
  1. 8.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::debug()
  2. 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::debug()

Prints debugging information.

Overrides FrameworkInterface::debug

1 call to Framework::debug()
Framework::selfTest in api/src/Framework/Framework.php
Tests all functions in the class.
1 method overrides Framework::debug()
Drupal8::debug in api/src/Framework/Drupal8.php
Prints debugging information.

File

api/src/Framework/Framework.php, line 95

Class

Framework
The entry point for the framework.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function debug($message, $info = NULL) {
  return $this
    ->implementor()
    ->debug($message, $info);
}