2 unstable releases
Uses old Rust 2015
0.2.0 | Aug 1, 2019 |
---|---|
0.1.0 | May 11, 2018 |
#1853 in Web programming
845 downloads per month
Used in 3 crates
5KB
74 lines
A logger that prints all messages in browser's console.
web_logger
Implements a logger that can be used in web browsers.
Usage
In libraries
Not required. Libraries should use the log
crate instead.
In executables
It must be added along with log
to the project dependencies:
[dependencies]
log = "0.4"
web_logger = "0.1"
web_logger
must be initialized as early as possible in the project.
After it's initialized, you can use the log
macros to do actual logging.
#[macro_use]
extern crate log;
extern crate web_logger;
fn main() {
web_logger::init();
info!("starting up");
// ...
}
Dependencies
~3.5MB
~77K SLoC