2024-01-31 21:47:09 +08:00

11 lines
203 B
Rust

use tracing::Level;
use tracing::{debug, error, info, trace, warn};
pub fn do_record() {
trace!("trace");
debug!("debug");
info!("information");
warn!("warning");
error!("error");
}