1
0
Эх сурвалжийг харах

Merge pull request #170 from autarch/autarch/fix-overzealous-logging

Make log message in Link component trace level, not debug
Jonathan Kelley 3 жил өмнө
parent
commit
84ec87ab78

+ 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 {