Skip to content

Commit

Permalink
docs: Remove note about log being an optional feature
Browse files Browse the repository at this point in the history
This was not even implemented. The note was a relic from an attempt to
put `log` behind a feature flag which was not completed.
  • Loading branch information
pnevyk committed Jan 4, 2022
1 parent b44fcb1 commit a4a3430
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,19 +255,10 @@
//! * High-level drivers encapsulating the low-level API for users that do not
//! need the fine-grained control.
//!
//! ## Optional features
//!
//! * `log` -- Brings in logging with the [`log`](https://crates.io/crates/log)
//! crate. Gomez uses *debug* level for all messages so that problems with
//! convergence can be debugged.
//!
//! ## License
//!
//! Licensed under MIT.

#[cfg(feature = "log")]
extern crate log_package as log;

pub mod core;
pub mod derivatives;
pub mod population;
Expand Down

0 comments on commit a4a3430

Please sign in to comment.