You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Replace dbg! call with trace! in src/asset.rs
Fixes#53
* Replace the `dbg!` call with `trace!(?properties, "user properties")` to log the properties at the trace level.
* chore: Add module documentation comment in asset.rs
* chore: Add logging section to debug guide
* chore: Update CHANGELOG for v0.4.2 changes
* lint: Simplify lifetime parameters in ResourceReader implementation
There is an annoying
dbg
call here:https://github.com/adrien-bon/bevy_ecs_tiled/blob/main/src%2Fasset.rs#L166-L167
This should be replaced by
debug!
or even better atrace!
instead.Happy to open a PR with this small chance.
The text was updated successfully, but these errors were encountered: