Remove unnecessary log

This commit is contained in:
Greg Johnston 2023-01-07 16:27:25 -05:00
parent 808d87598b
commit 063b946cd4

View file

@ -903,8 +903,6 @@ macro_rules! generate_html_tags {
)
)]
pub fn $tag(cx: Scope) -> HtmlElement<[<$tag:camel $($trailing_)?>]> {
#[cfg(debug_assertions)]
trace!("creating <{}/>", stringify!($tag));
HtmlElement::new(cx, [<$tag:camel $($trailing_)?>]::default())
}
)*