Crate logfast

Source
Expand description

LogFast - Insanely fast logging with a simple interface

§Example

use logfast::LogFast;

fn main() {
  let buffer_size = 100;
  let mut lf = LogFast::new("my.log", buffer_size).unwrap();

  lf.log("Here's a test log line");
  lf.log("And here's another");
}

Structs§

LogFast
Holds the LogFast housekeeping