[][src]Crate logfast

LogFast - Insanely fast logging with a simple interface

Example

This example is not tested
use logfast::LogFast;
 
fn main() {
  let mut lf = LogFast::new("my.log", 100).unwrap();
 
  ...
 
  lf.log("Here's a test log line");
  lf.log("And here's another");
 
  ...
}

Structs

LogFast

Holds the LogFast housekeeping