Hello,
I would like to implement promises monitoring functionality for bluebird: this would allow to see list of all pending promises at any moment, which could be helpful for tracing unfinished promises chains and detecting promises loops. I have 2 questions regarding this topic:
1) Would such a feature and corresponding toggle flag be accepted as contribution to bluebird?
2) I have found hook promiseCreated, what is most appropriate place in source to place corresponding hook? Currently I am thinking of _setFulfilled, _setRejected and _setCancelled methods of Promise.
Thanks.