borntyping / rust-simple_logger

A rust logger that prints all messages with a readable output format.
https://crates.io/crates/simple_logger
MIT License
220 stars 48 forks source link

Where is with_threads() ? #78

Closed HyeokSuLee closed 1 year ago

HyeokSuLee commented 1 year ago

Example 'threads' doesn't support anymore?

borntyping commented 1 year ago

Make sure you have the threads feature enabled.

You need a section like this in your Cargo.toml.

[dependencies.simple_logger]
features = ["threads"]