Open janhohenheim opened 2 months ago
Needs to be disabled on log for native and on tracing for Wasm.
log
tracing
How do you disable it for WASM? I know log has a feature to compile out trace!() logs, but I didn't think tracing did.
trace!()
The same way: https://github.com/TheBevyFlock/bevy_quickstart/blob/main/Cargo.toml#L10-L19
Needs to be disabled on
log
for native and ontracing
for Wasm.