ソースを参照

Merge branch 'master' of github.com:DioxusLabs/dioxus

Jonathan Kelley 3 年 前
コミット
88997019c5
1 ファイル変更1 行追加1 行削除
  1. 1 1
      packages/router/src/components/link.rs

+ 1 - 1
packages/router/src/components/link.rs

@@ -41,7 +41,7 @@ pub struct LinkProps<'a> {
 }
 }
 
 
 pub fn Link<'a>(cx: Scope<'a, LinkProps<'a>>) -> Element {
 pub fn Link<'a>(cx: Scope<'a, LinkProps<'a>>) -> Element {
-    log::debug!("render Link to {}", cx.props.to);
+    log::trace!("render Link to {}", cx.props.to);
     if let Some(service) = cx.consume_context::<RouterService>() {
     if let Some(service) = cx.consume_context::<RouterService>() {
         return cx.render(rsx! {
         return cx.render(rsx! {
             a {
             a {