Skip to content

Commit 8478349

Browse files
committed
rustdoc: Remove some debug logging
1 parent 96f5654 commit 8478349

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/rustdoc/markdown_pass.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ fn write_nmod(ctxt: ctxt, doc: doc::nmoddoc) {
250250
#[test]
251251
fn should_write_native_mods() {
252252
let markdown = test::render("#[doc = \"test\"] native mod a { }");
253-
log(error, markdown);
254253
assert str::contains(markdown, "Native module `a`");
255254
assert str::contains(markdown, "test");
256255
}
@@ -764,7 +763,6 @@ fn write_impl(ctxt: ctxt, doc: doc::impldoc) {
764763
#[test]
765764
fn should_write_impl_header() {
766765
let markdown = test::render("impl i for int { fn a() { } }");
767-
log(error, markdown);
768766
assert str::contains(markdown, "## Implementation `i for int`");
769767
}
770768

0 commit comments

Comments
 (0)