dzl

Crates.iodzl
lib.rsdzl
version0.2.1
sourcesrc
created_at2022-10-01 06:00:19.252548
updated_at2022-12-11 02:58:12.467047
descriptionA crate for logging. It is simple and easy to use :)
homepage
repositoryhttps://github.com/za-songguo/dzl
max_upload_size
id677666
size29,441
砸松果 (za-songguo)

documentation

README

dzl

A crate for logging.

It is simple and easy to use

You can learn more here

Example

main.rs

dzl::init().ok(); // Call this function only once in main.rs
dzl::loggers::trace("Something...");
dzl::loggers::debug("Something...");
dzl::loggers::info("Something...");
dzl::loggers::warn("Something...");
dzl::loggers::error("Something...");
dzl::loggers::custom("CustomType", "Something...");

Dzl.toml

write_to_log_file = true
log_path = "dzl.log" # This file needs to be created
log_level = "debug" # Only logs greater than or equal to this level will be printed and written to the log file

Output:

2022-12-03 11:30:55.23172315 +08:00:00 DEBUG Something...
2022-12-03 11:30:55.233852405 +08:00:00 WARN Something...
2022-12-03 11:30:55.235884013 +08:00:00 ERROR Something...
2022-12-03 11:30:55.240158709 +08:00:00 CustomType Something...

TODO

  • WASM (Console API) (0.3)
  • Better Error Handling
Commit count: 8

cargo fmt