flexi_logger icon indicating copy to clipboard operation
flexi_logger copied to clipboard

A flexible logger for rust programs that can write to stderr, stdout, and/or to log files

Results 7 flexi_logger issues
Sort by recently updated
recently updated
newest added

I have a use case where I'd like to write to an existing `std::fs::File` object. In particular, I have used the Win32 function `AllocConsole()` to create a console window for...

Hi, Thanks for creating 'flexi_logger'! For some reason, I don't get any colored output with the default settings (or any other settings I tried). When I run `cargo run --example...

Hello, I believe it would be a good idea to allow for custom env variables (maybe with `RUST_LOG` being the default). This way I can use flexi_logger for more than...

I came across `tracing` and noticed that flexi_logger has *some* support for it, so i tried it out, and once it is working it is working "great", but the setup...

enhancement

Hello! I have noticed that writer `FileLogWriter` can not `duplicate_to_stderr/out` Is there an easy way to print to console msgs from writer? Forward thank you!

Hi there, This fixes a race condition in test_multi_threaded_dates. If a worker thread takes less than 500 ms, this test fails due to missing MUST_BE_PRINTED lines. This is because the...

Hello! I see that rotating with `Numbers` yields files that look like this: ``` my_daemon_rCURRENT.log my_daemon_r00000.log my_daemon_r00001.log ... ``` and rotating with `NumbersDirect` yields files that look like this: ```...

enhancement