log

中文

Build Status GitHub release

the fast log . This crate uses #! [forbid(unsafe_code)] to ensure everything is implemented in 100% Safe Rust.

A log implementation for extreme speed, using Crossbeam/channel ,once Batch write logs,fast log date, Appender architecture, appender per thread

```

          -----------------

log data-> | main channel(crossbeam) | ->
----------------- ---------------- ---------------------- -> |thread channel)| -> background thread | appender1 | ---------------- ----------------------

                                    ----------------                                    ----------------------
                              ->    |thread channel)|  -> background thread  |    appender2  |
                                    ----------------                                    ----------------------

                                    ----------------                                    ----------------------
                              ->    |thread channel)|  -> background thread  |    appender3  |
                                    ----------------                                    ----------------------

                                    ----------------                                    ----------------------
                              ->    |thread channel)|  -> background thread  |    appender4  |
                                    ----------------                                    ----------------------

```

How fast is?

//MACOS(Apple M1MAX-32GB) Time: 221.079ms ,each:221 ns/op TPS: 4523139 Iter/s

support Future mode,async await based on mpsc channel, tokio or asyncstd support log split,zipcompress

toml log = "0.4" fast_log = {version = "1.5"} or enable zip/lz4/gzip Compression library ```toml log = "0.4"

"lz4","zip","gzip"

fast_log = {version = "1.5" , features = ["lz4","zip","gzip"]} ```

Use Log(Console)

rust use log::{error, info, warn}; fn main(){ fast_log::init(Config::new().console()).unwrap(); log::info!("Commencing yak shaving{}", 0); }

Use Log(Console Print)

rust use log::{error, info, warn}; fn main(){ fast_log::init(Config::new().console()).unwrap(); fast_log::print("Commencing print\n".into()); }

Use Log(File)

rust use fast_log::{init_log}; use log::{error, info, warn}; fn main(){ fast_log::init(Config::new().file("target/test.log")).unwrap(); log::info!("Commencing yak shaving{}", 0); info!("Commencing yak shaving"); }

Split Log(.log packer)

```rust use fastlog::plugin::filesplit::RollingType; use fastlog::consts::LogSize; use fastlog::plugin::packer::LogPacker;

[test]

pub fn testfilecompation() { fastlog::init(Config::new() .console() .filesplit("target/logs/", LogSize::MB(1), RollingType::All, LogPacker{})).unwrap(); for _ in 0..200000 { info!("Commencing yak shaving"); } log::logger().flush(); } ```

Custom Log(impl do_log method)

```rust use fast_log::{LogAppender}; use log::{error, info, warn};

pub struct CustomLog{} impl LogAppender for CustomLog{ fn dolog(&mut self, record: &FastLogRecord) { print!("{}",record); } } fn main(){ let wait = fastlog::init(Config::new().custom(CustomLog {})).unwrap(); info!("Commencing yak shaving"); log::logger().flush(); } ```