diff --git a/process_lib/src/lib.rs b/process_lib/src/lib.rs index 3b42c4ab..43e6d9f8 100644 --- a/process_lib/src/lib.rs +++ b/process_lib/src/lib.rs @@ -9,14 +9,14 @@ wit_bindgen::generate!({ }); /// Override the println! macro to print to the terminal -macro_rules! println { - () => { - $print_to_terminal(0, "\n"); - }; - ($($arg:tt)*) => { - $print_to_terminal(0, &format!($($arg)*)); - }; - } +// macro_rules! println { +// () => { +// $print_to_terminal(0, "\n"); +// }; +// ($($arg:tt)*) => { +// $print_to_terminal(0, &format!($($arg)*)); +// }; +// } /// PackageId is like a ProcessId, but for a package. Only contains the name /// of the package and the name of the publisher.