1 个不稳定版本

0.1.0 2022年2月13日

#837调试

MIT 许可证

5KB
117

Sloggrs

用 Rust 编写的简单日志辅助工具

日志级别

  • DEBUG:调试信息,(在生产中不需要)
  • INFO:进度信息(适用于生产)
  • WARN:警告,没有真正危险,但可能有助于发现潜在的错误
  • ERROR:可恢复错误
  • FATAL:不可恢复错误

示例

#[macro_use]
extern crate sloggrs;

fn main() {
    // Log only warnings and superior (enables WARN > ERROR > FATAL logs levels)
    init!(WARN);

    // Will **not** be logged
    debug!("Some really interesting debug message");

    // Will **not** be logged
    info!("Random information");

    // Will be logged
    warn!("Some information");

    // Will be logged
    error!("Failed to fail!")

    // Will be logged
    fatal!("Picards!");
}

lib.rs:

Sloggrs - 简单的日志记录器

无运行时依赖项