diff --git a/src/app.rs b/src/app.rs index b90de6f..def7c2d 100644 --- a/src/app.rs +++ b/src/app.rs @@ -32,7 +32,7 @@ pub struct AppContext { #[function_component] pub(super) fn App() -> yew::Html { // Debug info. - tracing::trace!("Rendering component."); + tracing::trace!("Rendering App component."); // Set up state. let app_state = use_state(glue::App::default); diff --git a/src/app/editor.rs b/src/app/editor.rs index 17e4c88..3bbd4e7 100644 --- a/src/app/editor.rs +++ b/src/app/editor.rs @@ -13,7 +13,7 @@ pub(super) struct Props { #[function_component] pub(super) fn Editor(props: &Props) -> yew::Html { // Debug info. - tracing::trace!("Rendering component."); + tracing::trace!("Rendering Editor component."); // Retrieve state. let Props { state } = props; diff --git a/src/app/editor/timeline.rs b/src/app/editor/timeline.rs index 18e227f..713d9da 100644 --- a/src/app/editor/timeline.rs +++ b/src/app/editor/timeline.rs @@ -14,7 +14,7 @@ pub(super) fn Timeline(props: &Props) -> yew::Html { let Props { style, class } = props; // Debug info. - tracing::trace!("Rendering component."); + tracing::trace!("Rendering Timeline component."); html! {
diff --git a/src/app/home.rs b/src/app/home.rs index dce82a1..7ecc93b 100644 --- a/src/app/home.rs +++ b/src/app/home.rs @@ -12,7 +12,7 @@ pub(super) struct Props { #[function_component] pub(super) fn Home(props: &Props) -> yew::Html { // Debug info. - tracing::trace!("Rendering component."); + tracing::trace!("Rendering Home component."); // Retrieve state. let Props { state } = props; diff --git a/src/app/querying_backend.rs b/src/app/querying_backend.rs index 3c4f715..0c2618b 100644 --- a/src/app/querying_backend.rs +++ b/src/app/querying_backend.rs @@ -11,7 +11,7 @@ pub(super) struct Props { #[function_component] pub(super) fn QueryingBackend(props: &Props) -> yew::Html { // Debug info. - tracing::trace!("Rendering component."); + tracing::trace!("Rendering QueryingBackend component."); // Retrieve state. let Props { state } = props; diff --git a/src/app/setup.rs b/src/app/setup.rs index 70623d3..225c15a 100644 --- a/src/app/setup.rs +++ b/src/app/setup.rs @@ -12,7 +12,7 @@ pub(super) struct Props { #[function_component] pub(super) fn Setup(props: &Props) -> yew::Html { // Debug info. - tracing::trace!("Rendering component."); + tracing::trace!("Rendering Setup component."); // Retrieve state. let Props { state } = props;