Skip to content

Commit 65d4e98

Browse files
authored
fix: INFO is too high a level for this prop tracing (#1570)
1 parent 195b843 commit 65d4e98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

leptos_dom/src/macro_helpers/tracing_property.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use wasm_bindgen::UnwrapThrowExt;
55
macro_rules! tracing_props {
66
() => {
77
::leptos::leptos_dom::tracing::span!(
8-
::leptos::leptos_dom::tracing::Level::INFO,
8+
::leptos::leptos_dom::tracing::Level::DEBUG,
99
"leptos_dom::tracing_props",
1010
props = String::from("[]")
1111
);
@@ -24,7 +24,7 @@ macro_rules! tracing_props {
2424
props.pop();
2525
props.push(']');
2626
::leptos::leptos_dom::tracing::span!(
27-
::leptos::leptos_dom::tracing::Level::INFO,
27+
::leptos::leptos_dom::tracing::Level::DEBUG,
2828
"leptos_dom::tracing_props",
2929
props
3030
);

0 commit comments

Comments
 (0)