1#[macro_use] 2extern crate log; 3 4mod disk; 5mod memory; 6 7pub use disk::DiskLog; 8pub use memory::MemoryLog;