Skip to content
Snippets Groups Projects
Verified Commit af124b8a authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: debugln issue

parent 0707e4c5
No related branches found
No related tags found
No related merge requests found
Pipeline #2361 passed
...@@ -2,8 +2,10 @@ ...@@ -2,8 +2,10 @@
#[macro_export] #[macro_export]
macro_rules! debugln { macro_rules! debugln {
($($rest:tt)*) => { ($($rest:tt)*) => {
std::print!("[DEBUG] "); {
std::println!($($rest)*) std::print!("[DEBUG] ");
std::println!($($rest)*);
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment