web_logger
web_logger copied to clipboard
Rust Logger for Web Browsers
After updating to `rustc 1.48.0` my app panics with: ``` panicked at 'attempted to leave type `webcore::serialization::SerializedValue` uninitialized, which is invalid ``` Commenting out `web_logger::init()` resolves the issue.
Currently this crate is using stdweb, and not supporting web-sys, can we support web-sys and use web-sys by default to avoid a stdweb dependency in a web-sys project, like what...
This crate depended on `stdweb`, which is not desirable if you prefer to use `web-sys`, like the main Yew project is moving to. Many of the examples in the Yew...
The WebLogger currently defaults to a `Trace` log level. I would like to avoid having Yew-framework-specific information printed to the console by specifying an `Info` log level. I think the...