mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
fix: INFO is too high a level for this prop tracing (#1570)
This commit is contained in:
parent
195b843840
commit
65d4e98d38
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue