Skip to content
Snippets Groups Projects
Commit 9e48c7ad authored by Ted Bowman's avatar Ted Bowman
Browse files

do not log statuscheck event because this is not part of the lifecycle and can...

do not log statuscheck event because this is not part of the lifecycle and can be fire many times or as diffent updaters
parent d823d1d2
No related branches found
No related tags found
No related merge requests found
<?php
declare(strict_types = 1);
namespace Drupal\package_manager_test_event_logger\EventSubscriber;
use Drupal\Component\Datetime\TimeInterface;
......@@ -12,7 +14,6 @@ use Drupal\package_manager\Event\PreCreateEvent;
use Drupal\package_manager\Event\PreDestroyEvent;
use Drupal\package_manager\Event\PreRequireEvent;
use Drupal\package_manager\Event\StageEvent;
use Drupal\package_manager\Event\StatusCheckEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
......@@ -60,7 +61,6 @@ class EventLogSubscriber implements EventSubscriberInterface {
PostApplyEvent::class => ['logEventInfo'],
PreDestroyEvent::class => ['logEventInfo'],
PostDestroyEvent::class => ['logEventInfo'],
StatusCheckEvent::class => ['logEventInfo'],
];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment