daboross

Results 177 comments of daboross

Apologies for, well, not working on this until now! I'm finally getting around to some of the projects that I started, and fern does seem to need a refresh which...

New update is not yet released, but almost completely built. If you're still interested in this library at all, any feedback on this is greatly appreciated! I'm trying to make...

Awesome, thanks for the feedback! There's one more thing I've just now added, which is documentation for exactly how `level_for` works internally. While `env_logger`'s `LogDirective` just matches the start of...

`fern` 0.4 has been released, and includes this functionality! Closing now that [`Dispatch::level_for`] exists. [`Dispatch::level_for`]: https://dabo.guru/rust/fern/fern/struct.Dispatch.html#method.level_for

@MggMuggins Sorry about the confusion! There should definitely be better documentation in this area than there is. I think in this case the problem is that the compiler makes module...

Glad it's working! I'll at least update the documentation to handle this, and it might be good to do more. One reason it's currently allowed is that `-` names can...

I'm imagining at least 3 recipes to start with: `[date time][module][level]`, `[module][level]` and `[level] module:`. All these would output to stdout only, and would include colors if supported by the...

If anyone's reading this and/or subscribed to the issue: any thoughts on `fern::recipes` under a enabled-by-default `"recipes"` flag vs. `fern-recipes` crate? I'm currently leaning towards `fern-recipes` so it can depend...

Agreed! If we go with the `recipes` name for this feature, the base ones could be gated under the `recipes` feature, and then time-based under both `recipes` and `chrono`, for...

This isn't currently possible with fern, but it's definitely something I'd like to support. Would require making a logger which writes to a file, but checks the current time on...