瀏覽代碼

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 {
-    log::debug!("render Link to {}", cx.props.to);
+    log::trace!("render Link to {}", cx.props.to);
     if let Some(service) = cx.consume_context::<RouterService>() {
         return cx.render(rsx! {
             a {