We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Had to replace: web_logger = "0.2"
web_logger = "0.2"
with: wasm-logger = "0.2"
wasm-logger = "0.2"
Or it would panic on every log.
The text was updated successfully, but these errors were encountered:
Thanks for the report! I was planning to switch to wasm-logger anyways 🙃
Sorry, something went wrong.
You also need to replace the use of web_logger in lib.rs:
lib.rs
pub fn run_app() -> Result<(), JsValue> { // ... // web_logger::init(); wasm_logger::init(wasm_logger::Config::default()); // ... }
No branches or pull requests
Had to replace:
web_logger = "0.2"
with:
wasm-logger = "0.2"
Or it would panic on every log.
The text was updated successfully, but these errors were encountered: