Move log module to dev::log

This commit is contained in:
Juno Takano 2026-03-16 20:02:03 -03:00
commit 9ebd91a589
9 changed files with 23 additions and 14 deletions

View file

@ -2,14 +2,13 @@ use std::{sync, time};
pub mod prelude {
pub use crate::{
log,
log::{Level::*, now},
tlog, write_log,
dev::log::{Level::*, now},
log, tlog, write_log,
};
}
pub mod dev;
pub mod graph;
pub mod log;
pub mod router;
pub mod syntax;