From 2530fa683fc80ded8eea8049400e6cd85c86d698 Mon Sep 17 00:00:00 2001 From: Mahdi Date: Thu, 25 Sep 2025 12:50:14 +0330 Subject: [PATCH 1/2] chore: re-export `debug_log` and `debug_error` in logging module --- leptos/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leptos/src/lib.rs b/leptos/src/lib.rs index 274a6cf34a..e27c0675c4 100644 --- a/leptos/src/lib.rs +++ b/leptos/src/lib.rs @@ -311,7 +311,7 @@ pub mod subsecond; /// Utilities for simple isomorphic logging to the console or terminal. pub mod logging { - pub use leptos_dom::{debug_warn, error, log, warn}; + pub use leptos_dom::{debug_log, debug_warn, debug_error, error, log, warn}; } /// Utilities for working with asynchronous tasks. From c982e554331d45d7982b4fca5f7054df6f8e6ae3 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 25 Sep 2025 09:55:25 +0000 Subject: [PATCH 2/2] [autofix.ci] apply automated fixes --- leptos/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/leptos/src/lib.rs b/leptos/src/lib.rs index e27c0675c4..c97d185d30 100644 --- a/leptos/src/lib.rs +++ b/leptos/src/lib.rs @@ -311,7 +311,9 @@ pub mod subsecond; /// Utilities for simple isomorphic logging to the console or terminal. pub mod logging { - pub use leptos_dom::{debug_log, debug_warn, debug_error, error, log, warn}; + pub use leptos_dom::{ + debug_error, debug_log, debug_warn, error, log, warn, + }; } /// Utilities for working with asynchronous tasks.