You are here

public function HttpblLogTrapper::trapDebug in http:BL 8

Same name in this branch
  1. 8 src/Logger/HttpblLogTrapper.php \Drupal\httpbl\Logger\HttpblLogTrapper::trapDebug()
  2. 8 src/ProxyClass/Logger/HttpblLogTrapper.php \Drupal\httpbl\ProxyClass\Logger\HttpblLogTrapper::trapDebug()

Traps and forwards DEBUG messages, based on config setting.

Parameters

string $message:

array $context:

integer $logVolume,: The minimum setting required to pass on the message.

Return value

null

Overrides HttpblLogTrapperInterface::trapDebug

File

src/ProxyClass/Logger/HttpblLogTrapper.php, line 141

Class

HttpblLogTrapper
Provides a proxy class for \Drupal\httpbl\Logger\HttpblLogTrapper.

Namespace

Drupal\httpbl\ProxyClass\Logger

Code

public function trapDebug($message, array $context = array(), $logVolume = HTTPBL_LOG_VERBOSE) {
  return $this
    ->lazyLoadItself()
    ->trapDebug($message, $context, $logVolume);
}