Crate for logging to file

Is any addon crate for this crate https://doc.rust-lang.org/log/log/index.html that implement
logging to file?

Yes, it is simple enough for writing it in short time,
but why care if somebody already done it?

simplelog: https://github.com/drakulix/simplelog.rs

1 Like

Thanks, documentation is out of date, but it works.

I skipped it at the first look, because of thought that it is simple in terms of that it just call println!

You can use Fern for this too

1 Like