You are here

public function HttpblLogTrapper::trapInfo in http:BL 8

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

Traps and forwards INFO 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::trapInfo

File

src/Logger/HttpblLogTrapper.php, line 128

Class

HttpblLogTrapper
(An arbitrated logger)

Namespace

Drupal\httpbl\Logger

Code

public function trapInfo($message, array $context = array(), $logVolume = HTTPBL_LOG_VERBOSE) {

  // Only pass message if logVolume meets or exceeds the minimum to pass on.
  if (\Drupal::state()
    ->get('httpbl.log') >= $logVolume) {
    $this
      ->log(RfcLogLevel::INFO, $message, $context);
  }
}