fil_logger 0.1.7

A logging library used by Filecoin
Documentation
1
2
3
4
5
6
#[test]
#[should_panic(expected = "Initializing logger failed. Was another logger already initialized?")]
fn double_init_failure() {
    fil_logger::init();
    fil_logger::init();
}