From a4a3430a5ee0d30fceba3b9bcce8ff2265e7e109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Nevyho=C5=A1t=C4=9Bn=C3=BD?= Date: Tue, 4 Jan 2022 16:48:30 +0100 Subject: [PATCH] docs: Remove note about log being an optional feature This was not even implemented. The note was a relic from an attempt to put `log` behind a feature flag which was not completed. --- src/lib.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 4faa269..282d726 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;