How to get Magento 2 events/observers
You can get the list of events/observers in Magento 2 in the \Magento\Framework\Event\Manager::dispatch() method. Since there is no access to the logger, you will have to add a logger instance in the constructor:

Now, call in the dispatch method:
Instead of info you can use \Psr\Log\LoggerInterface methods.
Source (
More Magento 2 tips from the Cookbook
