Drakulix / simplelog.rs

Simple Logging Facility for Rust
https://docs.rs/simplelog/
Apache License 2.0
414 stars 71 forks source link

Add line ending enum to lib #152

Open javachaos opened 4 months ago

javachaos commented 4 months ago

I forgot to give public access to LineEnding struct, so that users could use it to define the desired line endings. E.g.

conf.set_line_ending(LineEnding::Crlf);

This commit allows users to:

use simplelog::LineEnding;