Is there an observer which can be used to observe events when a product is removed from the cart? I haven't found any.
What I have found is checkout_cart_update_items_after
which can be used if a product is removed by altering the product count, but not when the user uses the remove button. The only alternative I see in the moment is checkout_cart_save_after
which is used whenever the cart changes. Of course this needs custom logic which check which product was removed. Not perfect.
So is there a better way to watch out for remove events?