From c98115cefb1e10b582569404f6142a918f3ccbe5 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 17 Apr 2015 15:47:38 +0530 Subject: [PATCH] Remove info for path (fixup #24452) --- src/librustdoc/html/render.rs | 1 - src/librustdoc/lib.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/librustdoc/html/render.rs b/src/librustdoc/html/render.rs index 250ec34edf7..3f3f8201b00 100644 --- a/src/librustdoc/html/render.rs +++ b/src/librustdoc/html/render.rs @@ -1178,7 +1178,6 @@ impl Context { { fn render(w: File, cx: &Context, it: &clean::Item, pushname: bool) -> io::Result<()> { - info!("Rendering an item to {}", w.path().unwrap().display()); // A little unfortunate that this is done like this, but it sure // does make formatting *a lot* nicer. CURRENT_LOCATION_KEY.with(|slot| { diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 2682bbf4662..e3b429a37d3 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -32,7 +32,6 @@ #![feature(test)] #![feature(unicode)] #![feature(str_words)] -#![feature(file_path)] #![feature(path_ext)] #![feature(path_relative_from)] #![feature(slice_patterns)]