Skip to content

Commit

Permalink
conform feature name
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Aug 10, 2020
1 parent 72bfa47 commit 8ba1e96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ required-features = [
default = ["progress-tree", "progress-tree-log", "localtime"]
progress-tree = ["dashmap", "parking_lot"]
progress-tree-log = ["log"]
log-progress = ["log"]
progress-log = ["log"]
unit-bytes = ["bytesize"]
unit-human = ["human_format"]
unit-duration = ["compound_duration"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This crate comes with various cargo features to tailor it to your needs.
* If logging in the `log` crate is initialized, a `log` will be used to output all messages provided to
`tree::Item::message(…)` and friends. No actual progress is written.
* May interfere with `tui-renderer` or `line-renderer`, or any renderer outputting to the console.
* **log-progress**
* **progress-log**
* A `Progress` implementation which logs messages and progress using the `log` crate
* **local-time** _(default)_
* If set, timestamps in the message pane of the `tui-renderer` will be using the local time, not UTC
Expand Down
2 changes: 1 addition & 1 deletion src/progress/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::time::SystemTime;
pub mod key;
mod utils;

#[cfg(feature = "log-progress")]
#[cfg(feature = "progress-log")]
pub mod log;

#[doc(inline)]
Expand Down

0 comments on commit 8ba1e96

Please sign in to comment.