stdweb-logger 0.1.1

Logger for stdweb
Documentation
  • Coverage
  • 61.54%
    8 out of 13 items documented0 out of 8 items with examples
  • Size
  • Source code size: 12.91 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.94 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 55s Average build duration of successful builds.
  • all releases: 55s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • YushiOMOTE/stdweb-logger
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • YushiOMOTE

stdweb-logger

Logger for stdweb

use log::*;

fn main() {
    stdweb::initialize();
    
    // Set logger
    stdweb_logger::init();

    // Log
    info!("{}!", "Hello");

    stdweb::event_loop();
}