Convert all println to log or todo

This commit is contained in:
Wildan M
2026-01-25 05:27:38 +07:00
parent 9711dcca51
commit f15322453b
16 changed files with 78 additions and 70 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ pub unsafe extern "C" fn a64l(s: *const c_char) -> c_long {
/// See <https://pubs.opengroup.org/onlinepubs/9799919799/functions/abort.html>.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn abort() -> ! {
eprintln!("Abort");
log::error!("Abort");
intrinsics::abort();
}