public function HttpblLogTrapper::trapNotice in http:BL 8
Same name in this branch
- 8 src/Logger/HttpblLogTrapper.php \Drupal\httpbl\Logger\HttpblLogTrapper::trapNotice()
- 8 src/ProxyClass/Logger/HttpblLogTrapper.php \Drupal\httpbl\ProxyClass\Logger\HttpblLogTrapper::trapNotice()
Traps and forwards NOTICE 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::trapNotice
File
- src/
ProxyClass/ Logger/ HttpblLogTrapper.php, line 123
Class
- HttpblLogTrapper
- Provides a proxy class for \Drupal\httpbl\Logger\HttpblLogTrapper.
Namespace
Drupal\httpbl\ProxyClass\LoggerCode
public function trapNotice($message, array $context = array(), $logVolume = HTTPBL_LOG_MIN) {
return $this
->lazyLoadItself()
->trapNotice($message, $context, $logVolume);
}