Debug logs in WASM builds

As you know when you build your web app using WASM, it doesn’t show the print logs so you won’t see any debug information.
It’s because the WASM doesn’t support debug mode.

So what do you guys do when you want to see some debug prints in your wasm build?
I know that you can see the logs in the inspector’s console messages, but I would like to see them in my IDE logs

1 Like