Skip to content

Commit 0fab210

Browse files
committed
use femme 2.0.1
1 parent d1397ed commit 0fab210

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ async-h1 = { version = "1.1.2", optional = true }
3434
async-sse = "2.1.0"
3535
async-std = { version = "1.4.0", features = ["unstable"] }
3636
cookie = { version = "0.12.0", features = ["percent-encode"]}
37+
femme = "2.0.1"
3738
http-types = "1.0.1"
3839
kv-log-macro = "1.0.4"
3940
mime = "0.3.14"
@@ -42,7 +43,6 @@ route-recognizer = "0.1.13"
4243
serde = "1.0.102"
4344
serde_json = "1.0.41"
4445
serde_qs = "0.5.0"
45-
femme = { path = "../../femme" }
4646

4747
[dev-dependencies]
4848
async-std = { version = "1.4.0", features = ["unstable", "attributes"] }

src/log/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
//! ```no_run
66
//! use tide::log;
77
//!
8-
//! // `tide::log` requires starting a third-party logger such as `femme`. We may
9-
//! // ship such a logger as part of Tide in the future.
10-
//! femme::start(log::Level::Info.to_level_filter()).unwrap();
8+
//! log::start();
119
//!
1210
//! log::info!("Hello cats");
1311
//! log::debug!("{} wants tuna", "Nori");

0 commit comments

Comments
 (0)