3个版本
0.1.2 | 2022年9月2日 |
---|---|
0.1.1 | 2022年9月2日 |
0.1.0 | 2022年9月2日 |
#765 in 调试
6KB
103 行
se-logger
简单的可定制日志库。
lib.rs
:
se-logger
简单的可定制日志库。
入门指南
use se_logger::*;
fn main() {
// Initialize the logger with the log file path and log level
// File path will be test_19_35_33.log (for example)
log_init("test_%H_%M_%S.log", INFO);
// Now you can use the library anywhere
info("This is an info message");
error("This is an error message");
}
输出
[19:35:33] [INFO] [main] This is an info message
[19:35:33] [ERROR] [main] This is an error message
依赖
~1MB
~18K SLoC