Is there a way to configure Q to log or call a specific function on all rejected promises (like an interceptor)?
Many exceptions are being swallowed in my application, and put error handling in all my promises just for logging purposes would be duplicated work to do.
Thanks!
Q actually already supports this - as of 1.3.0 Q offers the standard unhandled rejection hooks:
You can also log caught errors from
.done
withQ.onerror
: