Make some debug prints more useful

This commit is contained in:
Keegan McAllister 2013-09-23 11:37:24 -07:00
parent d6769de467
commit 69473b6c9c

View file

@ -523,7 +523,7 @@ pub fn parse_html(cx: *JSContext,
}
}
debug!("data = %?", data);
debug!("script data = %?", data);
js_chan.send(JSTaskNewInlineScript(data.concat(), url.clone()));
}
}
@ -549,7 +549,7 @@ pub fn parse_html(cx: *JSContext,
}
}
debug!("data = %?", data);
debug!("style data = %?", data);
let provenance = InlineProvenance(url_cell.take().unwrap(), data.concat());
css_chan3.send(CSSTaskNewFile(provenance));
}