drainrs 0.1.0

An implementation of the drain logparsing algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
use drainrs::print_log;

use simple_logger::SimpleLogger;

#[test]
fn test_a() {
    SimpleLogger::new().init().unwrap();
    // print_log("apache-short.log");
    print_log("Apache.log", false);
    assert_eq!(1, 1);
}