You are here

protected function PriceListItemDeleteForm::logDeletionMessage in Commerce Pricelist 8.2

Overrides ContentEntityDeleteForm::logDeletionMessage

File

src/Form/PriceListItemDeleteForm.php, line 31

Class

PriceListItemDeleteForm

Namespace

Drupal\commerce_pricelist\Form

Code

protected function logDeletionMessage() {
  $entity = $this
    ->getEntity();
  $this
    ->logger($entity
    ->getEntityType()
    ->getProvider())
    ->notice('The %label price has been deleted.', [
    '%label' => $entity
      ->label(),
  ]);
}