Until now, there was no reliable way to print debug messages on all environments. There was crate::print!, but this could not work in mobile emulators. Also, various panics were not visible.
This PR improves debugging experience.
Before Committing
Please make sure that you've formatted the files.
dart format .
cargo fmt
cargo clippy --fix --allow-dirty
Changes
Until now, there was no reliable way to print debug messages on all environments. There was
crate::print!
, but this could not work in mobile emulators. Also, various panics were not visible.This PR improves debugging experience.
Before Committing
Please make sure that you've formatted the files.