You are probably familiar with a concept of an event whether you are a programmer or not. Basically, the event is an action that occurs in a response of the user interaction such as a user logged in, a user logged out, add to cart etc. And when an event occurs it passes data to observers and the observer runs the logic you have created.
But when there are a thousand lines of code and you want to create a particular event trigger, it becomes difficult to identify what existing events are triggered when you perform any action. To help Magento devs by saving their valuable time and efforts, we came up with a small code that will help you to get a list of events generated when you perform any Action.
To get a list of events we have to perform just two easy steps.

Firstly, we need to create ‘di.xml‘ file inside our extension folder at below path using following code.
app\code\Vendor\Extension\etc\di.xml

Now, we need to create on more file ‘ListDispatchedEvents.php‘ inside our extension folder.
app\code\Vendor\Extension\Plugin\ListDispatchedEvents.php

Tadaa! Your list of events is generated inside an event.log file which resides inside var/log folder. You can use this code anywhere to grab existing events list which triggered when you make any action.
And yes, please hit that stars if this code worked for you or comment down below if you face any issue.

Happy Coding?

Click to rate this post!
[Total: 17 Average: 4.7]