axbuild 0.4.2

An OS build lib toolkit used by arceos
Documentation
1
2
3
4
5
6
7
8
9
use std::path::Path;

use anyhow::Result;
use env_logger::Env;

pub(crate) fn init_logging(_workspace_root: &Path) -> Result<()> {
    let _ = env_logger::Builder::from_env(Env::default().default_filter_or("info")).try_init();
    Ok(())
}