With javascript exceptions, we used to override __cxa_throw to log the callstack of thrown exception in production (release build). We are moving to wasm exceptions now and are wondering how can we achieve the same with this. I tried exporting __cxa_throw in emitted js and override it as we did before but that is not getting called now with wasm exceptions.