fix: INFO is too high a level for this prop tracing (#1570)

This commit is contained in:
Greg Johnston 2023-08-23 06:39:37 -04:00 committed by GitHub
parent 195b843840
commit 65d4e98d38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@ use wasm_bindgen::UnwrapThrowExt;
macro_rules! tracing_props {
() => {
::leptos::leptos_dom::tracing::span!(
::leptos::leptos_dom::tracing::Level::INFO,
::leptos::leptos_dom::tracing::Level::DEBUG,
"leptos_dom::tracing_props",
props = String::from("[]")
);
@ -24,7 +24,7 @@ macro_rules! tracing_props {
props.pop();
props.push(']');
::leptos::leptos_dom::tracing::span!(
::leptos::leptos_dom::tracing::Level::INFO,
::leptos::leptos_dom::tracing::Level::DEBUG,
"leptos_dom::tracing_props",
props
);