use std::io::Write;
pub use veecle_osal_api::log::LogTarget;
#[derive(Debug)]
pub struct Log;
impl LogTarget for Log {
type Time = crate::time::Time;
fn init() {
}
fn println(args: core::fmt::Arguments<'_>) {
let _ = std::writeln!(std::io::stdout(), "{args}");
}
}