From 905b62583be73a8969014dbb98b6fd1c92c23df6 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Fri, 10 Feb 2023 12:43:38 +0100 Subject: Add `log` feature, document features --- examples/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/lib.rs') diff --git a/examples/lib.rs b/examples/lib.rs index 3c76022..14cfa64 100644 --- a/examples/lib.rs +++ b/examples/lib.rs @@ -1,6 +1,6 @@ fn main() -> Result<(), String> { // Turn on debugging. - // You can show it with `RUST_LOG=debug cargo run --example lib` + // You can show it with `RUST_LOG=debug cargo run --features log --example lib` env_logger::init(); // Safely turn (untrusted?) markdown into HTML. -- cgit