Crates.io | tracing-ez |
lib.rs | tracing-ez |
version | 0.3.0 |
source | src |
created_at | 2022-10-08 14:13:51.152919 |
updated_at | 2022-10-08 14:40:33.457148 |
description | A simplified interface to tracing |
homepage | |
repository | |
max_upload_size | |
id | 683547 |
size | 2,508 |
use tracing_ez::{span, info};
fn main() {
tracing_ez::set_global_default_stdout();
span!("main");
info!("Hello, world!");
}