Implement log levels
This commit is contained in:
parent
2cdf68082a
commit
874cac2df1
25 changed files with 497 additions and 223 deletions
|
|
@ -2,12 +2,15 @@ use std::{sync, time};
|
|||
|
||||
pub mod prelude {
|
||||
pub use crate::log;
|
||||
pub use crate::tlog;
|
||||
pub use crate::log::Level::*;
|
||||
pub use crate::log::now;
|
||||
}
|
||||
|
||||
pub mod graph;
|
||||
pub mod router;
|
||||
pub mod syntax;
|
||||
pub mod dev;
|
||||
pub mod log;
|
||||
|
||||
pub static ONSET: sync::LazyLock<time::Instant> =
|
||||
sync::LazyLock::new(time::Instant::now);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue