ckb-logger 0.39.0

CKB logging facade.
Documentation

CKB logging facade.

This crate is a wrapper of the crate log.

The major issue of the crate log is that the macro like trace!(target: "global", "message") is unfriendly to cargo fmt. So this crate disallow using target: in the basic logging macros and add another group of macros to support both target and message, for example, trace_target!("global", "message").